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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -