summaryrefslogtreecommitdiff
path: root/progs/a172.py
blob: aa9928147883d9ecf0bfcf5fc380f8e702d0d87f (plain)
1
2
3
4
5
6
import re
def occurance_substring(text,pattern):
 for match in re.finditer(pattern, text):
    s = match.start()
    e = match.end()
    return (text[s:e], s, e)