regex match pattern python 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: python re
m = re.search(r'[cbm]at', 'aat')
print(m)
import re
xx = "guru99,education is fun"
r1 = re.findall(r"^\w+",xx)
print(r1)
m = re.search(r'[cbm]at', 'aat')
print(m)