Skip to content

Instantly share code, notes, and snippets.

@CodersArts
Created August 26, 2019 15:21
Show Gist options
  • Save CodersArts/28bc79d5ac70fe0cda69728cde75021e to your computer and use it in GitHub Desktop.
Save CodersArts/28bc79d5ac70fe0cda69728cde75021e to your computer and use it in GitHub Desktop.
compile regular expression
import re
pattern=re.compile('my')
result=pattern.findall('my name is naveen')
print result
result2=pattern.findall('Hi Hi This is codersarts')
print result2
Output
['my']
['Hi', 'Hi']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment