summaryrefslogtreecommitdiff
path: root/progs/a407.py
blob: 9ebe1a9e610085a731940871091cd874fe04833d (plain)
1
2
3
4
5
6
7
import re
def text_match_string(text):
        patterns = '^\w+'
        if re.search(patterns,  text):
                return 'Found a match!'
        else:
                return 'Not matched!'