码迷,mamicode.com
首页 > 编程语言 > 详细

python(re正则)

时间:2018-12-08 18:02:04      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:xdp   brtn   tcp   bcg   aec   obd   w16   acs   rtu   

import re #导入模块
 
info = ‘qwewwer12332423kdsjfkl2342kdjfl213nkafal123123‘

例1:

 res1 = re.compile(er(.*?)kd.*?fk(.*?)kd).search(info).group(1)  #代表匹配第一个括号里的内容
 res2 = re.compile(er(.*?)kd.*?fk(.*?)kd).search(info).group(2)   #代表匹配第二个括号里的内容
 print(res,res2)

例2:

res3 = re.compile(er(.*?)kd.*?fk(.*?)kd).findall(info)
print(res3)
 t = res2[0]   #把列表转换为元组
 print(t=,t)
 q = ‘‘.join(res3)   #把元组拼接成字符串
 print(q)

 

技术分享图片技术分享图片
 

例3:

res4 = re.compile((\d+)).findall(info) #匹配所有数字
print(res4)
result = ‘‘.join(res4)   
print(result)

 

技术分享图片技术分享图片
 

例4:

res5 = re.compile(er(.*?)nk).findall(info) #匹配关键字内的所有
print(res5)
 

 

 
 

python(re正则)

标签:xdp   brtn   tcp   bcg   aec   obd   w16   acs   rtu   

原文地址:https://www.cnblogs.com/heiguu/p/10088331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!