http://v2.freep.cn/3tb_131023134156kqj9512293.jpgurlContent1 获取不到匹配的内容,但是urlContent2可以 两个只差一个空行,
在正则上也加了跨行属性,为什么不能匹配呢?求解
——————以下是图片中的代码的文本部分——————
urlContent1 ='''
111
222
'''
urlContent2 ='''111
222
'''
global_pattern = re.compile('111',re.S|re.I|re.M)
globalMatch = global_pattern.match(urlContent1)
if globalMatch:
globalContent = globalMatch.group()
print 'urlContent1 match' + globalMatch.group()
globalMatch = global_pattern.match(urlContent2)
if globalMatch:
globalContent = globalMatch.group()
print 'urlContent2 match' + globalMatch.group()
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/86607
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.