python-for-devops icon indicating copy to clipboard operation
python-for-devops copied to clipboard

Python Day-02 03-regex-match.py

Open pramod-199 opened this issue 1 year ago • 1 comments

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

pramod-199 avatar Apr 03 '24 10:04 pramod-199

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")

pramod-199 avatar Apr 03 '24 10:04 pramod-199