您的位置:首页 > 脚本大全 > > 正文

python提取字符串中的正则表达式(python3正则提取字符串里的中文实例)

更多 时间:2022-03-31 19:06:52 类别:脚本大全 浏览量:2860

python提取字符串中的正则表达式

python3正则提取字符串里的中文实例

如下所示:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • # -*- coding: utf-8 -*-
  • import re
  • #过滤掉除了中文以外的字符
  • str = "hello,world!!%[545]你好234世界。。。"
  • str = re.sub("[a-za-z0-9\!\%\[\]\,\。]", "", str)
  • print(str)
  •  
  • #提取字符串里的中文,返回数组
  • pattern="[\u4e00-\u9fa5]+"
  • regex = re.compile(pattern)
  • results = regex.findall("adf中文adf发京东方")
  • print(results)
  • 打印结果:

    python提取字符串中的正则表达式(python3正则提取字符串里的中文实例)

    以上这篇python3正则提取字符串里的中文实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持开心学习网。

    原文链接:https://blog.csdn.net/qq_36625806/article/details/81268639

    您可能感兴趣