re正则表格式

# coding=utf-8
# "正则表达式学习"
import re

# "match方法的工作方式是只有当被搜索字符串的开头匹配模式的时候它才能找到匹配对象"
match = re.match(r'dog', 'dogsdf cat dog')
print match.group()

# "开头没有匹配cat,将返回None"
match = re.match(r'cat', 'dog cat dog')
print match

# "使用re.search查找匹配任意位置,search方法不会限制只从字符串开头匹配,因此可以在中间查找cat"

search = re.search(r'cat', 'dog catsd dog')
print search.group(0)
# "search查找到一个匹配后不会继续查找"
search = re.search(r'dog', 'dog catsd dog')
print search.group(0)

# "使用re.findall-所以匹配对象"
findall = re.findall(r'dog', 'dogsdfs catsd dog')
print findall

# "使用match.start和match.end方法"

match = re.match(r'dog', 'dogsdf cat dog')
print match.start(), match.end()

# "使用match.group通过数字分组"
contactInfo = 'Doe, John: 555-1212'

search = re.search(r'\w+, \w+: \S+', contactInfo)
print search.start(), search.end()
print search.group(0)
search = re.search(r'(\w+), (\w+): (\S+)', contactInfo)
print search.start(), search.end()
print search.group(1)
print search.group(2)
print search.group(3)

# "通过别名访问分组内容"
search = re.search(r'(?P<last>\w+), (?P<first>\w+): (?P<phone>\S+)', contactInfo)
print search.group('last')
print search.group('first')
print search.group('phone')

findall = re.findall(r'(\w+), (\w+): (\S+)', contactInfo)
print findall

html = 'Hello <a href="http://pypix.com" title="pypix">Pypix</a>'\
        'Hello <a href="http://example.com" title"example">Example</a>'

# .*是贪婪模式,将尽可能匹配多的字符
findall = re.findall(r'(<a.*</a>)', html)
print findall
# .*?是非贪婪模式
findall = re.findall(r'(<a.*?</a>)', html)
print findall

# "前向定界符和后向定界符"
strings = ["hello foo", "hello foobar"]
for string in strings:
    # (?=bar)表示匹配bar
    pattern = re.search(r'foo(?=bar)', string)
    if pattern:
        print 'True'
        print pattern.group()
    else:
        print 'False'
strings = ["1hello foo", "2hello foobar", "3hello foobaz"]

for string in strings:
    # (?!bar)表示不匹配bar,如"3hello foobaz"
    pattern = re.search(r'foo(?!bar)', string)
    if pattern:
        print 'True'
        print pattern.group()
    else:
        print 'False'
# "后向界定符类似,但是它查看当前匹配的前面的模式。你可以使用 (?> 来表示肯定界定,(?<! 表示否定界定。"

print '***********************************************'
strings = [  "hello1 bar",         # returns True
             "hello2 foobar",      # returns False
             "hello3 bazbar"]      # returns True
for string in strings:
    pattern = re.search(r'(?=foo)bar', string)
    if pattern:
        pattern.group()
    else:
        print 'False'

# 条件(IF-Then-Else)模式 (?(?=regex)then|else)
print '*******************************************'
strings = [  "<pypix>",    # returns true
             "<foo",       # returns false
             "bar>",       # returns false
             "hello" ]     # returns true
 
for string in strings:
    # ^表示从开始地方匹配,$匹配到结尾, (<)?表示<出现一次或不出现, 
    # 1表示分组(<),当然也可以为空因为后面跟着一个问号。当且仅当条件成立时它才匹配关闭的尖括号
    pattern = re.search(r'^(<)?[a-z]+(?(1)>)$', string)
    if pattern:
        print 'True'
    else:
        print 'False'

# 无捕获组
print '*****************************************'
string = 'hello foobar'
pattern = re.search(r'(f.*)(b.*)', string)
print pattern.group()
print pattern.group(1)
print pattern.group(2)
pattern = re.search(r'(h.*)(f.*)(b.*)', string)
print pattern.group()
print pattern.group(1)
print pattern.group(2)
print pattern.group(3)

pattern = re.search(r'(?:h.*)(f.*)(b.*)', string)
print pattern.group()
print pattern.group(1)
print pattern.group(2)

print '*****************************************'
pattern = re.search(r'(h.*)(?P<fstar>f.*)(?P<bstar>b.*)', string)
print pattern.group('fstar')
print pattern.group('bstar')

# 使用回调函数
template = "Hello [first_name] [last_name], \
Thank you for purchasing [product_name] from [store_name]. \
The total cost of your purchase was [product_price] plus [ship_price] for shipping. \
You can expect your product to arrive in [ship_days_min] to [ship_days_max] business days. \
Sincerely, \
[store_manager_name]"          
# assume dic has all the replacement data          
# such as dic['first_name'] dic['product_price'] etc...          
dic = {          
 "first_name" : "John",          
 "last_name" : "Doe",          
 "product_name" : "iphone",          
 "store_name" : "Walkers",          
 "product_price": "$500",          
 "ship_price": "$10",          
 "ship_days_min": "1",          
 "ship_days_max": "5",          
 "store_manager_name": "DoeJohn"          
}          
result = re.compile(r'(.*)')          
print result.sub('John', template, count=1)

print '*************************************'

# assume dic has all the replacement data          
# such as dic['first_name'] dic['product_price'] etc...          
def multiple_replace(dic, text):
    mapRe = map(lambda key : re.escape("["+key+"]"), dic.keys())
    print mapRe
    pattern = "|".join(mapRe)
    return re.sub(pattern, lambda m: dic[m.group()[1:-1]], text)     
print multiple_replace(dic, template)


for key in dic.keys():
    pattern = re.escape("["+key+"]")
    print pattern
print '***************************'
inputStr = "hello crifan, nihao crifan";
replacedStr = re.sub(r"hello (?P<name>\w+), nihao (?P=name)", "\g<name>", inputStr);
print "replacedStr=",replacedStr; #crifan

print '***************************'
inputStr = "hello crifan, nihao crifan";
replacedStr = re.sub(r'crifan', "crifanli", inputStr);
print "replacedStr=",replacedStr; #crifanli

def pythonReSubDemo():
    """
        demo Pyton re.sub
    """
    inputStr = "hello 123 world 456";
     
    def _add111(matched):
        intStr = matched.group("number"); #123
        intValue = int(intStr);
        addedValue = intValue + 111; #234
        addedValueStr = str(addedValue);
        return addedValueStr;
         
    replacedStr = re.sub("(?P<number>\d+)", _add111, inputStr);
    print "replacedStr=",replacedStr; #hello 234 world 567
pythonReSubDemo()

inputStr = "hello 123 world 456";
search = re.findall('(?P<number>\d+)', inputStr)
print search

替换

# 会将匹配
test = re.sub(ur'[电「『]', ur'”', ur'「闪电分手的『史蒂芬森')
print test
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容