match regex python code example
Example 1: python pattern matching example
import re
pattern = re.compile('[a-zA-Z ]+')
message = "Weather is nice"
if pattern.match(message).group() == message:
print("match")
else:
print("no match")
Example 2: find all regex matches python
matches = re.findall(r"xxx|yyy", a_string)
Example 3: python re compile
import re
prog = re.compile(pattern)
result = prog.match(string)
result = re.match(pattern, string)
Example 4: python regular expression
import re
test_string = 'Hello greppers!'
pattern = re.compile(r'Hello')
match = pattern.finditer(test_string)
for match in matches:
print(match)
Example 5: python .findall
match = re.search(r'bb', 'aabbcc')
match = re.search(r'cd', 'aabbcc')
match = re.search(r'...c', 'aabbcc')
match = re.search(r'\d\d\d', 'p123g')
match = re.search(r'\w\w\w', '@@abcd!!')
Example 6: re.match() python
import re
pattern = '^a...s$'
test_string = 'abyss'
result = re.match(pattern, test_string)
if result:
print("Search successful.")
else:
print("Search unsuccessful.")