Computer >> Computer tutorials >  >> Programming >> Python

How to escape all special characters for regex in Python?


We use re.escape() to escape the special characters −

The following code shows how all special characters in given string are escaped using re.escape() method

>>> p = '5*(67).89?'
>>> re.escape(p)
'5\\*\\(67\\)\\.89\\?'