zoukankan      html  css  js  c++  java
  • python正则表达式练习题

    1. 写一个正则表达式,使其能同时识别下面所有的字符串:'bat','bit', 'but', 'hat', 'hit', 'hut'

    bt = 'bat|bit|but|hat|hit|hut'
    
    m = re.search(bt, 'bhut')

    s = "bat, bit, but, hat, hit, hut"
    print (re.findall(r'[bh][aiu]t', s))

    2.匹配由单个空格分隔的任意单词对,也就是姓和名

    bt = '[a-zA-Z]+ [a-zA-Z]+'
    
    m = re.match(bt, "Jane Smith")

    3. 匹配由单个逗号和单个空白符分隔的任何单词和单个字母,如姓氏的首字母

    s = "yu, Guan bei, Liu fei, Zhang"
    
    m = re.findall(r'([A-Za-z]+),s([A-Za-z])', s)

    4.匹配所有的有效的Python标识符集合

    s = "__hello, python_1, 2world, pra_ni, @dfa_,ewq* "
    
    print(re.findall(r"[a-zA-Z_][w]*(?!=W)", s))

    5. 根据美国街道地址格式,匹配街道地址。美国接到地址使用如下格式:1180 Bordeaux Drive。使你的正则表达式足够灵活,以支持多单词的街道名称,如3120 De la Cruz Boulevard

    s = "1180 Bordeaux Drive"
    
    m = re.search(r'd+( +[a-zA-Z]+)+', s)

    6. 匹配以“www”起始且以“.com”结尾的简单Web域名:例如,http://www.yahoo.com ,也支持其他域名,如.edu .net等

    m = re.search(r'w{3}.[a-zA-Z]+.(com|edu|net)',s)

    7.匹配所有能够表示Python整数的字符串集

    黑夜给了我一双漆黑的眼睛,而我却用它来寻找光明
  • 相关阅读:
    oracle中获取当前整点和上一个小时整点,日期类型
    MYSQL中替换oracle中runum用法
    oracle 中备份表
    發生了不愉快的事情
    今年下雪了。。。
    VB.net下非常好用的实现FTP的类
    今年過節不回家了
    焕肤:不要暗沉
    不要打梦到的电话号码。。。
    關於IT職業的思考
  • 原文地址:https://www.cnblogs.com/tangxinghe/p/11199782.html
Copyright © 2011-2022 走看看