regex search functions code example
Example 1: searching for a pattern in text with re python
import re
xx = "guru99,education is fun"
r1 = re.findall(r"^\w+",xx)
print(r1)
Example 2: regex in python
>>> import re
>>> p = re.compile('ab*')
>>> p
re.compile('ab*')