Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- import re
- text = 'This is some text -- with punctuation.'
- pattern = 'is'
- print 'Text :', text
- print 'Pattern:', pattern
- m = re.match(pattern, text)
- print 'Match :', m
- s = re.search(pattern, text)
- print 'Search :', s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement