將文字點與正規表示式配對
在Python 中,使用原始字串(例如r"string)符合文字點( .) ") 需要轉義以避免將其視為與任何匹配的元字符
要匹配輸入“blah blah blah [email protected] blah blah”中的字符串“test.this”,您可以使用以下正規表示式:
import re pattern = r"\b\w\.\w@.*" match = re.findall(pattern, "blah blah blah [email protected] blah blah") print(match)
Here's正規表示式的細分:
re.findall() 函數傳回一個列表輸入字串中所有符合的子字串。在這種情況下,它將傳回一個包含匹配字串「test.this@...」的清單。
以上是如何使用 Python 來匹配正規表示式中的文字點?的詳細內容。更多資訊請關注PHP中文網其他相關文章!