Open pramod-199 opened 7 months ago
03-regex-match.py please check this file as im getting error of match not found mybe match only checks at the starting of string
it should be like
import re
text = "quick brown fox" pattern = r"quick"
match = re.match(pattern, text) if match: print("Match found:", match.group()) else: print("No match")
03-regex-match.py please check this file as im getting error of match not found mybe match only checks at the starting of string