Home > Q&A > body text
如图:
import re tel=r""" ...\d{2,3} ...- ...\d{6} ...""" print(re.findall(tel,'102-123456')) print(re.findall(tel,'102-123456',re.X)) 显示: [] []
不知道是程序哪里出问题了,请指教。
PHP中文网2017-04-18 10:26:25
Tell me what the dots in front are←_←
伊谢尔伦2017-04-18 10:26:25
tel=r"\d{2,3}-\d{6}"