- 写一个正则表达式判断一个字符串是否是ip地址
规则:一个ip地址由4个数字组成,每个数字之间用.连接。每个数字的大小是0-255
255.189.10.37 正确
256.189.89.9 错误
import re
from re import fullmatch,findall
ip1 = '255.189.10.37'
re_ip = re.fullmatch(r'([0-256][.])\1\1\1[0-256]', ip1)
while not re_ip:
print('错误')
else:
print('正确')
- 计算一个字符串中所有的数字的和
例如:字符串是:‘hello90abc 78sjh12.5’ 结果是90+78+12.5 = 180.5
re_str = r'\d+[.]\d+|[1-9]\d*'
list1 = findall(re_str, 'hello90abc 78sjh12.5')
s = int(list1[0])+int(list1[1])+float(list1[2])
print(s)
- 电话号码的验证
re_tell = input('请输入电话号码(11位):')
a = re.fullmatch(r'[1]\d{10}', re_tell)
while not a:
print('电话号码不存在!')
break
else:
print('电话号码存在')
- 简单的身份证号的验证
re_id = input('请输入身份证号码(18位):')
re_id1 = re.fullmatch(r'(\d{16})([0-9])([\d|\w])', re_id)
while not re_id1:
print('身份证号码不存在!')
break
else:
print('身份证号码存在')
二、不定项选择题
- 能够完全匹配字符串“(010)-62661617”和字符串“01062661617”的正则表达式包括( d a )
A. “(?\d{3})?-?\d{8}”
B. “[0-9()-]+”
C. “[0-9(-)]\d”
D. “[(]?\d[)-]\d*”
-
能够完全匹配字符串“c:\rapidminer\lib\plugs”的正则表达式包括( )
A. “c:\rapidminer\lib\plugs”
B. “c:\rapidminer\lib\plugs”
C. “(?i)C:\RapidMiner\Lib\Plugs” ?i:将后面的内容的大写变成小写
D. “(?s)C:\RapidMiner\Lib\Plugs” ?s:单行匹配 -
能够完全匹配字符串“back”和“back-end”的正则表达式包括( b )
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*” -
能够完全匹配字符串“go go”和“kitty kitty”,但不能完全匹配“go kitty”的正则表达式包括(ad)
:\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” -
能够在字符串中匹配“aab”,而不能匹配“aaab”和“aaaab”的正则表达式包括(a b )
A. “a*?b”
B. “a{,2}b”
C. “aa??b”
D. “aaa??b”
网友评论