Answers for "check if string match regex python"

0

check if string match regex python

# Example from https://docs.python.org/3/howto/regex.html
import re
p = re.compile('ab*')
p.match(input1)
Posted by: Guest on April-18-2022

Python Answers by Framework

Browse Popular Code Answers by Language