用正则表达式怎么取出汉字与数字呢? 日期:2019-07-06 15:52:29 人气:1 用正则表达式怎么取出汉字与数字呢? 使用Python正则表达式可以做到,data = ''.join(re.findall(u'[0-9a-zA-Z\u4e00-\u9fa5]+', str1))