search

Home  >  Q&A  >  body text

python3.5 正则表达式re.X模块 不起作用

如图:

import re
tel=r"""
...\d{2,3}
...-
...\d{6}
..."""
print(re.findall(tel,'102-123456'))
print(re.findall(tel,'102-123456',re.X))

显示:
[]
[]

不知道是程序哪里出问题了,请指教。

黄舟黄舟2786 days ago558

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-04-18 10:26:25

    Tell me what the dots in front are
    ←_←

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-18 10:26:25

    tel=r"\d{2,3}-\d{6}"

    reply
    0
  • Cancelreply