其他分享
首页 > 其他分享> > re模块相关

re模块相关

作者:互联网

re.findall()方法

# python3 
import re 
#示例1:查找全部r标识代表后面是正则的语句 
str_1 = re.findall(r"com","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_1) 
#输出结果:['com'] 
 
#示例2:符号^表示匹配以http开头的的字符串返回, 
str_2 = re.findall(r"^http","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_2) 
# 输出结果:['http'] 
 
#示例3:用$符号表示以html结尾的字符串返回,判断是否字符串结束的字符串 
str_3 = re.findall(r"html$","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_3) 
# 输出结果:['html'] 
 
# 示例4:[...]匹配括号中的其中一个字符 
str_4 = re.findall(r"[n,w]b","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_4) 
# 输出结果:['nb'] 
 
# 示例5:“d”是正则语法规则用来匹配0到9之间的数返回列表 
str_5 = re.findall(r"\d","http://www.cnblogs.com/lizm166/p/8143231.html") 
str_6 = re.findall(r"\d\d\d","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_5) 
# 输出结果:['1', '6', '6', '8', '1', '4', '3', '2', '3', '1'] 
print (str_6) 
# 输出结果:['166', '814', '323'] 
 
# 示例6:小d表示取数字0-9,大D表示不要数字,也就是除了数字以外的内容返回 
str_7 = re.findall(r"\D","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_7) 
# 输出结果:['h', 't', 't', 'p', ':', '/', '/', 'w', 'w', 'w', '.', 'c', 'n', 'b', 'l', 'o', 'g', 's', '.', 'c', 'o', 'm', '/', 'l', 'i', 'z', 'm', '/', 'p', '/', '.', 'h', 't', 'm', 'l'] 
 
# 示例7:“w”在正则里面代表匹配从小写a到z,大写A到Z,数字0到9 
str_8 = re.findall(r"\w","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_8) 
# 输出结果:['h', 't', 't', 'p', 'w', 'w', 'w', 'c', 'n', 'b', 'l', 'o', 'g', 's', 'c', 'o', 'm', 'l', 'i', 'z', 'm', '1', '6', '6', 'p', '8', '1', '4', '3', '2', '3', '1', 'h', 't', 'm', 'l'] 
 
# 示例8:“W”在正则里面代表匹配除了字母与数字以外的特殊符号 
str_9 = re.findall(r"\W","http://www.cnblogs.com/lizm166/p/8143231.html") 
print (str_9) 
# 输出结果:[':', '/', '/', '.', '.', '/', '/', '/', '.']
遇到的问题:
message_ids = re.findall("&msg_id=(\w+)", res)
其中的正则"&msg_id=(\w+)"意思是在res字符串中匹配字符串"&msg_id="后面的数字字母或下划线。
例:res = "&msg_id=qwe_123"得到的message_ids的值为qwe_123
代码示例:
import re
import json

request_body = {
    "wayBillCode": 773133268251776,
    "provinceName": "浙江省",
    "provinceId": 330000,
    "cityName": "杭州市",
    "cityId": 330100,
    "feature": {"aliPayMediaId": "qwe_123"},
    "&msg_id=qwe_123": "qwe_123"
}
res = json.dumps(request_body)
print(res, type(res))

message_id = '123'
message_ids = re.findall("&msg_id=(\w+)", res)
print(message_ids)    # ['qwe_123']
if message_ids:
    message_id = message_ids[0]
print(message_id)    # qwe_123

 

标签:http,模块,re,html,str,print,相关,findall
来源: https://www.cnblogs.com/Gnomeshghy/p/15694587.html