python - Regex for the dot character? -
i trying detect 'bullet' character followed text. example:
• text here
can tell me regex detect 'bullet' character •
in python? symbol?
it's •
, may have little dance in source file.
# -*- coding: utf-8 -*- pattern = re.compile(ur'•')
Comments
Post a Comment