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

python 正则表达式

时间:2019-07-31 15:10:58      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:匹配   obj   指定   imp   2018年   style   nbsp   str   oob   

# -*- coding: utf-8 -*-
import re
line = "boooooooooooooobbbaaaaby123"
# ^ 以这个开始
# regex_str = "^b" 以b开始
# . 任何字符
# * 多次
regex_str = "^b.*"
# 正则匹配
if re.match(regex_str, line):
    print(yes)
# $ 结尾字符
regex_str = "^b.*3$"
if re.match(regex_str, line):
    print(yes)
# ? 非贪婪匹配
regex_str = ".*?(b.*?b).*"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))
# + 至少出现一次
regex_str = ".*(b.+b).*"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))
# {2}限定指定出现的次数 {2,}出现的次数2次以上 {2,5} 最少2次,最多5次
regex_str = ".*(b.{5,}b).*"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))
# | 或
line = "test123"
regex_str = "((test|test456)123)"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(2))
# [] 括号内的任意一个 [0-9] [a-z] [^1] 不等与1
line = "13822345789"
regex_str = "(1[3456789][^1]{9})"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))
# \s 空格 \S 不是空格都可以 \w 任意字符 \W 空格
line = "你 好"
regex_str = "(你\W好)"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))
# 提取汉字
line = "hello 你好世界"
regex_str = ".*?([\u4E00-\u9F45]+世界)"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))
# \d 数字
line = "hello 2019年"
regex_str = ".*?(\d+)年"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))
# 实例
line = "张三出生于2018年1月5日"
line = "张三出生于2018/1/5"
line = "张三出生于2018-1-5"
line = "张三出生于2018-01-05"
line = "张三出生于2018-01"
regex_str = ".*?出生于(\d{4}[年/-]\d{1,2}([月/-]\d{1,2}|[月/-]$|$))"
match_obj = re.match(regex_str, line)
if match_obj:
    print(match_obj.group(1))

 

python 正则表达式

标签:匹配   obj   指定   imp   2018年   style   nbsp   str   oob   

原文地址:https://www.cnblogs.com/phper8/p/11276022.html

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