python get regex match as string code example
Example: re.match python
import re
xx = "guru99,education11 is fun"
r1 = re.findall(r"^\w+",xx)
print(r1)
import re
xx = "guru99,education11 is fun"
r1 = re.findall(r"^\w+",xx)
print(r1)