我正在尝试检测一个“子弹”字符,然后是一些文字。例如:
• This is some text here
有人能告诉我在python中检测'bullet'字符•
的正则表达式是什么?这个符号是什么?
答案 0 :(得分:6)
它只是•
,但您可能需要做一点舞蹈才能将它放入源文件中。
# -*- coding: utf-8 -*-
pattern = re.compile(ur'•')
答案 1 :(得分:-2)
嗯,点是正则表达式中的特殊字符。因此,如果你想要分割一个点,你需要逃避特殊的特征点:
import re
regx = re.compile('\.ab..')
ss = ',ab123 .ab4578 !ab1298 .abUVMO'
print regx.findall(ss)
# result: ['.ab45', '.abUV']