import re
new ='我单位招标编号为TJ20190101001的招标工作已经结束,'
temp_list = re.findall('[\x00-\xff]', new)
print(re.findall('[\x00-\xff]', new))
result = ''.join(temp_list)
print(result)
# 匹配所有汉字
print(re.findall('[\u4e00-\u9fa5]', data))
# 匹配所有单字符,英文,数字,特殊符号
print(re.findall('[\x00-\xff]', data))
# 匹配所有非单字符,汉字和省略号
print(re.findall('[^\x00-\xff]', data))
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。