博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python---协程---重写多进程
阅读量:5234 次
发布时间:2019-06-14

本文共 1156 字,大约阅读时间需要 3 分钟。

一、

# 匹配一行文字中所有开头的字母 import re s = 'i love you but you don\'t love me' # \b\m findall content = re.findall(r'\w\b', s) print(content) # 匹配一行文字中所有数字开头的内容 s1 = 'i 22love 33you 44but 5you don\'t66  7love 99me' # \d content = re.findall(r'\b\d', s1) print(content) # 匹配  只含数字和字母的行 s2 = 'i love you \n2222kkkk but \ndfefe23 you dont love \n23243dd' content = re.findall(r'\w+', s2, re.M) print(content) 二、写一个正则表达式,使其能匹配以下字符'bit','but','hat','hit','hut'
#  写一个正则表达式,使其能匹配以下字符'bit','but','hat','hit','hut' s3 = "'bit', 'bat', 'but', 'hat', 'hit', 'hut'" content = re.findall(r'...t', s3) print(content) 三、
# 提取电子邮件格式 s4 = """xxxxx@gmail.com xxxx@qq.com baidu.com 999.com jkjk@163.com""" content = re.findall(r'\w+@\w+.com', s4) print(content) 四、
# 使用正则提取字符串中的单词 s5 = "i love you not because who 233 of 890sdx not" content = re.findall(r'\b[a-zA-Z]+\b', s5) print(content) 五、
# 使用正则提取字符串中的单词 s5 = "i love you not because who 233 of 890sdx not" #content = re.findall(r'\b[a-zA-Z]+\b', s5) #print(content)
content = re.match(r'[a-zA-Z]+\b', s5) content = re.search(r'^[a-zA-Z+\b]', s5) print(content.group())
六、
 

转载于:https://www.cnblogs.com/niaocaizhou/p/11076098.html

你可能感兴趣的文章
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>
JSON跨域解决方案收集
查看>>
SSH框架整合总结
查看>>
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>