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

python-正则表达式1

时间:2019-05-31 23:31:42      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:group   匹配   reg   imp   python   match   包含   print   port   

import re
# 判断是否包含b
# line = "booooooobby123"
# regex_str = "^b.*"
# if re.match(regex_str, line) :
#     print(‘yes‘)

# 结果是bb 原因:正则表达式是一种贪婪的模式 一直会匹配到最后一种返回
line = ‘booooooooobby123‘
regex_str = ".*(b.*b).*"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))

# 结果是booooooooobb ?表示 匹配前面的子表达式零次或一次 在这里可以理解成解除贪婪的模式
line = ‘booooooooobby123‘
regex_str = ".*?(b.*b).*"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))


# 结果返回booooooooob 这个是正确的写法 加了两个?解除贪婪的模式
line = ‘booooooooobby123‘
regex_str = ".*?(b.*?b).*"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))

  

python-正则表达式1

标签:group   匹配   reg   imp   python   match   包含   print   port   

原文地址:https://www.cnblogs.com/shaoshao/p/10957941.html

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