Answers for "re mobile no validate python"

0

re mobile no validate python

# validate either with +91 or without
s = +91 9876543210
r = re.compile("?:(\+91\s)?([6-9][0-9]{9})$")
m = re.search(r,s)
if m:
  print(re.group())
else:
  print("not found")
Posted by: Guest on October-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language