标签:style 正则表达式 info alt 数字 user mac center rom
如返回数据
tr_content = [(‘/share/home?uk=3924974212&suk=mOZidGjjyKS6Y6NecksgaQ" target="_blank" title="å\x8e»Taç\x9a\x84å\x88\x86享主页" class="share-person-username global-ellipsis">ç\x8e¯å\x8d\x8e**å\x88\x86享</a>\n<a href="//yun.baidu.com/buy/center?tag=1&from=sicon" class="unvip-icon sicon‘, ‘\n<em></em>\n‘)]
我们只需要“3924974212”这段数据
首先,我们去掉除数字以外的其他内容
td_content = re.findall("\d+", tr_content, re.S)
打印出来的内容
然后,我们取数组中的第一组数据,同时打印出来
print(td_content[0])
标签:style 正则表达式 info alt 数字 user mac center rom
原文地址:https://www.cnblogs.com/becks/p/12499200.html