python模式匹配找出字符串中的信息

import re
text = """3843700   "4c4e276567929c747ab6709b"  null    "12345678”  zzzzz"""#用户id,微信号,null,QQ号,没用的字符串
pattern = re.compile(r'(.*?) +(.*?) +null +(.*?) +(.*?).*', re.I)   # re.I 表示忽略大小写
m = pattern.finditer(text)
a = ["用户id","微信号","QQ号"]
b = [m[0],m[1],m[2]]
c = dict(zip(a,b))
print(c)



import re
pattern1 = re.compile(r'"\w+"\tnull\t".+"\t\d+\t\d\t\d\t\d')
#print(pattern1.findall(user))
it = pattern1.finditer("2287345    \"4db7abcc6a238ed5d8e486d8\"   null   \"DJ Mike too the rescue!\"    1303971421  0   1   1  \"4bf58dd8d48988d1e5931735\"   \"4c7c6b4fdbaa76b04e1c314b\"   null   \"\"The best teachers only come from Pen.\"\"  1303711907 0  1  1  ")
for march in it:
    print(march.group()+'\n')

第二段存在匹配过长的问题

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值