美文网首页
2018-09-11 Day17 正则表达式作业

2018-09-11 Day17 正则表达式作业

作者: Ftr_ | 来源:发表于2018-09-11 21:40 被阅读0次
    import re
    from re import fullmatch,search,findall,match
    """
    1. 写一个正则表达式判断一个字符串是否是ip地址  
    规则:一个ip地址由4个数字组成,每个数字之间用.连接。每个数字的大小是0-255  
    255.189.10.37   正确    
    256.189.89.9    错误      
    """
    str_a = '256.189.89.9'
    er_str = '([0-9]+\.){3}[0-9]+'
    print(fullmatch(er_str,str_a))
    result = re.split(r'\D', str_a)
    place = 0
    for price in result[:]:
        if int(price)>255:
            print("ip地址错误")
            break
        else:
            place += 1
    if place==4:
        print("ip地址正确")
    
    """
    2. 计算一个字符串中所有的数字的和  
    例如:字符串是:‘hello90abc 78sjh12.5’ 结果是90+78+12.5 = 180.5
    """
    str_a = 'hello90abc 78sjh12.5'
    er_str = r'[0-9]+\.\d?|[0-9]+'
    print(findall(er_str,str_a))
    # price = findall(er_str,str_a)
    sum=0
    for summation in findall(er_str,str_a)[:]:
        sum+=float(summation)
    print(sum)
    
    """
    3. 验证输入的内容只能是汉字
    """
     str_a = str(input("请输入汉字:"))
     er_str = r'[^a-zA-Z\d\s\+\!\@\#\%\^\&\<\>\.\*\?\\\(\)\[\]\$\|\"\'\:\;\`\~\-\_\=\+\{\}\/\,]+'
     price = findall(er_str,str_a)
     if not findall(er_str,str_a):
         print('输入错误!!')
     else:
         print(price)
         print('输入正确!!')
    
    """
    4. 电话号码的验证
    """
    str_a = '15912119999'
    er_str = r'[1][0-9]{10}'
    if not fullmatch(er_str,str_a):
        print("号码有误!")
    else:
        print(findall(er_str,str_a))
        print("号码正确!")
    
    """
    5. 简单的身份证号的验证
    """
    str_a = '532128199709090030'
    er_str = r'[1-9][0-9]{17}'
    if not fullmatch(er_str,str_a):
        print("号码有误!")
    else:
        print(findall(er_str,str_a))
        print("号码正确!")
    
    
    
    
    """
    二、不定项选择题    
    
    1.  能够完全匹配字符串“(010)-62661617”和字符串“01062661617”的正则表达式包括(A、B、D)  
    
     A. “\(?\d{3}\)?-?\d{8}”        
     B. “[0-9()-]+”       
     C. “[0-9(-)]*\d*”        
     D. “[(]?\d*[)-]*\d*”
    """
    
    """
    2.  能够完全匹配字符串“c:\rapidminer\lib\plugs”的正则表达式包括(B、C)    
    A. “c:\rapidminer\lib\plugs”  
    B. “c:\\rapidminer\\lib\\plugs”  
    C. “(?i)C:\\RapidMiner\\Lib\\Plugs”   ?i:将后面的内容的大写变成小写    
    D. “(?s)C:\\RapidMiner\\Lib\\Plugs”   ?s:单行匹配  
    """
    
    """
    3.  能够完全匹配字符串“back”和“back-end”的正则表达式包括(A、C、D)  
    A. “\w{4}-\w{3}|\w{4}”  match->back,back-end    fullmatch-> back,back-end  
    B. “\w{4}|\w{4}-\w{3}” match-> back, back  fullmatch-> back,back-end  
    C. “\S+-\S+|\S+”          
    D. “\w*\b-\b\w*|\w*”  
    """
    
    """
    4.  能够完全匹配字符串“go go”和“kitty kitty”,但不能完全匹配“go kitty”的正则表达式包括(A、C1、D)     
    :\1就是重复前面第一个()/组合里面的内容  
    :\2就是重复前面第二个()/组合里面的内容  
    A. “\b(\w+)\b\s+\1\b”       
    B. “\w{2,5}\s*\1”  
    C. “(\S+) \s+\1”        C1. “(\S+)\s+\1”
    D. “(\S{2,5})\s{1,}\1”  
    """
    
    """
    5.  能够在字符串中匹配“aab”,而不能匹配“aaab”和“aaaab”的正则表达式包括(B、C)  
    A. “a*?b”                   
    B. “a{,2}b”   
    C. “aa??b”                      
    D. “aaa??b”
    """
    

    相关文章

      网友评论

          本文标题:2018-09-11 Day17 正则表达式作业

          本文链接:https://www.haomeiwen.com/subject/qsspgftx.html