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

def text_match_wordz(input_string):
    if re.search(r'z', input_string):
        return 'Found a match!'
    else:
        return 'Not matched!'
```