美文网首页
day17作业

day17作业

作者: 诗妮SONY | 来源:发表于2018-12-01 10:05 被阅读0次

    1. 写一个正则表达式判断一个字符串是否是ip地址

    规则:一个ip地址由4个数字组成,每个数字之间用.连接。每个数字的大小是0-255

    255.189.10.37 正确

    256.189.89.9 错误

    import re
    
    str1 = r'((\d|[1-9]\d|1\d{2}|2[0-9]\d|25[0-5])[.]){3}(\d|[1-9]\d|1\d{2}|2[0-9]\d|25[0-5])'
    # re_str = r'((\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5])[.]){3}(\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5])'
    res = re.fullmatch(str1, '255.254.100.255')
    print(res)
    

    2. 计算一个字符串中所有的数字的和

    例如:字符串是:‘hello90abc 78sjh12.5’ 结果是90+78+12.5 = 180.5
    str1 = 'hello90abc 78sjh12.5'
    re_str = r'[+-]?[1-9]\d*\.\d+|[+-]?0\.\d+|[+-]?[1-9]\d*||0'
    num = (re.findall(re_str, 'hello90abc 78sjh12.5'))
    num1 = 0
    for i in num:
        num1 += float(i)
    print(num1)
    

    3 验证输入的内容只能是汉字

    str1 = input('请输入内容:')
    re_str = r'[\u4e00-\u9fa5]*'
    res = (re.fullmatch(re_str, str1))
    if not res :
        print('输入的不是中文')
    else:
        print('输入的是中文')
    

    4电话号码的验证

    str1 = input('请输入您的电话号码:')
    re_str = r'1[3-9][0-9]\d{8}'
    print(re.fullmatch(re_str, str1))
    

    5. 简单的身份证号的验证

    str2 = input('请输入您的身份证号码:')
    
    re_str = r'\d{15}|\d{17}[a-zA-Z]|\d{18}'
    print(re.fullmatch(re_str, str2))
    
    1. 能够完全匹配字符串“(010)-62661617”和字符串“01062661617”的正则表达式包括(A B D )

    A. “(?\d{3})?-?\d{8}”
    B. “[0-9()-]+”
    C. “[0-9(-)]\d
    D. “[(]?\d[)-]\d*”

    1. 能够完全匹配字符串“c:\rapidminer\lib\plugs”的正则表达式包括(B )
      A. “c:\rapidminer\lib\plugs”
      B. “c:\rapidminer\lib\plugs”
      C. “(?i)C:\RapidMiner\Lib\Plugs” ?i:将后面的内容的大写变成小写
      D. “(?s)C:\RapidMiner\Lib\Plugs” ?s:单行匹配
    1. 能够完全匹配字符串“back”和“back-end”的正则表达式包括( A B 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*”

    2. 能够完全匹配字符串“go go”和“kitty kitty”,但不能完全匹配“go kitty”的正则表达式包括(A D )
      :\1就是重复前面第一个()/组合里面的内容
      :\2就是重复前面第二个()/组合里面的内容
      A. “\b(\w+)\b\s+\1\b”
      B. “\w{2,5}\s*\1”
      C. “(\S+) \s+\1”
      D. “(\S{2,5})\s{1,}\1”

    3. 能够在字符串中匹配“aab”,而不能匹配“aaab”和“aaaab”的正则表达式包括( B C )
      A. “a*?b”
      B. “a{,2}b”
      C. “aa??b”
      D. “aaa??b”

    相关文章

      网友评论

          本文标题:day17作业

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