正则表达式(单词边界 \b)

如果使用正则表达式查找某个单词,最好还是使用\b包裹需要查找的表达式。

比如,在this island is beautiful中查找‘is’这个单词,如果直接使用is作为表达式,那么查找结果就是this中的is。

>>> import re
>>> re.search(r'is','this island is beautiful').span()
(2, 4)

如果使用\bis\b作为表达式,那么查找结果就是第三个单词,结果正确。

>>> re.search(r'\bis\b','this island is beautiful').span()
(12, 14)
>>> 


你可能感兴趣的:(正则表达式(单词边界 \b))