使用Python语言编写正则匹配中文的程序
时间: 2024-04-25 09:08:15 浏览: 42
Python匹配中文的正则表达式
import re
# 定义中文匹配的正则表达式
zh_pattern = re.compile(u'[\u4e00-\u9fa5]')
# 测试字符串
test_str = "Hello World! 你好,世界!"
# 使用正则表达式匹配中文字符
zh_match = zh_pattern.findall(test_str)
# 输出匹配结果
print(zh_match)
阅读全文