------
## 最终结论
```python
import re

def text_match_string(s):
    if re.match(r'^\w+', s):
        return 'Found a match!'
    else:
        return 'Not matched!'
```