Answers for "using re in python to search for string pattern"

1

re.match python

import re
xx = "guru99,education11 is fun"
r1 = re.findall(r"^w+",xx)
print(r1)
Posted by: Guest on February-22-2021
0

python re search print

>>> import re
>>> reg = re.compile("[a-z]+8?")
>>> str = "ccc8"
>>> print(reg.match(str).group()) #use group() to print the matches
ccc8
Posted by: Guest on November-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language