python re match 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: python re compile
import re
prog = re.compile(pattern)
result = prog.match(string)
result = re.match(pattern, string)
Example 3: 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.")
Example 4: re.match python
import re
xx = "guru99,education11 is fun"
r1 = re.findall(r"^\w+",xx)
print(r1)
Example 5: re.search variable
if re.search(rf"\b(?=\w){TEXTO}\b(?!\w)", subject, re.IGNORECASE):
...do something