blob: 466e5606339b625643bf30fcb22c00bba74264fe (
plain)
1
2
3
4
5
6
7
8
|
import re
pattern = 'fox'
text = 'The quick brown fox jumps over the lazy dog.'
def find_literals(text, pattern):
match = re.search(pattern, text)
s = match.start()
e = match.end()
return (match.re.pattern, s, e)
|