在我們日常使用中,經常需要搜尋關鍵位置進行字串的匹配,比如一行文字的開頭,又比如乙個字串的開頭,或者結尾。 這時候就需要使用正規表示式的邊界符進行匹配,它們定義如下:
定義字元
意義^字串的開頭或一行的開頭
$ 字串的結尾或一行的結尾
\a 字串的開頭
\z 字串的結尾
\b 空字串的開頭或乙個單詞的結尾
\b 非空字串的開頭或非乙個單詞的結尾,與\b相反
測試例子如下:
#python 3.6
#蔡軍生
##from re_test_patterns import test_patterns
test_patterns(
'this is some text -- with punctuation.',
[(r'^\w+', 'word at start of string'),
(r'\a\w+', 'word at start of string'),
(r'\w+\s*$', 'word near end of string'),
(r'\w+\s*\z', 'word near end of string'),
(r'\w*t\w*', 'word containing t'),
(r'\bt\w+', 't at start of word'),
(r'\w+t\b', 't at end of word'),
(r'\bt\b', 't, not start or end of word')],
)
結果輸出如下:
'^\w+' (word at start of string)
'this is some text -- with punctuation.'
'this'
'\a\w+' (word at start of string)
'this is some text -- with punctuation.'
'this'
'\w+\s*$' (word near end of string)
'this is some text -- with punctuation.'
..........................'punctuation.'
'\w+\s*\z' (word near end of string)
'this is some text -- with punctuation.'
..........................'punctuation.'
'\w*t\w*' (word containing t)
'this is some text -- with punctuation.'
.............'text'
.....................'with'
..........................'punctuation'
'\bt\w+' (t at start of word)
'this is some text -- with punctuation.'
.............'text'
'\w+t\b' (t at end of word)
'this is some text -- with punctuation.'
.............'text'
'\bt\b' (t, not start or end of word)
'this is some text -- with punctuation.'
.......................'t'
..............................'t'
.................................'t'
python裡使用正規表示式的DOTALL標誌
正常的情況下,正規表示式裡的句號 是匹配任何除換行符之外的字元。但是有時你也想要求它連換行符也匹配,這時怎麼辦呢?其實不用急,可以使用dotall標誌,就可以讓它匹配所有字元,不再排除換行符了。如下例子 python 3.6 蔡軍生 import re text this is some text ...
python正規表示式及使用正規表示式的例子
正規表示式 正則表達用來匹配字串 正規表示式匹配過程 正規表示式語法規則 匹配除換行 n 外的任意字串 abcabc 轉義字元,使後乙個字元改變原來的意思 a c a c 字符集,對應的位置可以是字符集中任意字元,字符集中的字元可以逐個列出,也可以給出範圍,如 abc 或 a c 第乙個字元如果是 ...
python裡常用的正規表示式
1.使用者名稱import re 4到16位 字母,數字,下劃線,減號 if re.match r a za z0 9 abwc print 匹配 2.整數import re 正整數正則 if re.match r d 42 print 匹配 負整數正則 if re.match r d 42 pri...