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

python匹配两个字符串中间的字符串

时间:2018-04-04 23:24:10      阅读:3167      评论:0      收藏:0      [点我收藏+]

标签:开头   imp   style   问题:   post   字符串   html   gpo   注意   

问题:使用python正则如何匹配两字符串中间的字符串
解决:使用re模块的findall,注意,re.match是只能从开头匹配的
方法:

import re
html_str = </a></div></div><script>var Locafds fds fds fds fds fds fds ;</script></body></html>
local = re.findall(r</div><script>(.*)</script></body>, html_str)
print(local[0])
#‘var Locafds fds fds fds fds fds fds ;‘

 



这样就可以匹配到script标签中的代码了

python匹配两个字符串中间的字符串

标签:开头   imp   style   问题:   post   字符串   html   gpo   注意   

原文地址:https://www.cnblogs.com/zhaoyingjie/p/8718963.html

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