我对 Python 很陌生,在决定在这里问一个问题之前,我尽可能多地进行了研究。所以这里是问题:
我不确定我的 RegEx 做错了什么。我想试试 re.findall() ,所以我想我会写一个小脚本来查找网页上的电话号码。这是我现在拥有的代码。
import re, urllib
inurl = raw_input("Input a URL: ")
web = urllib.urlopen(inurl)
web.readlines()
numbers = re.findall("/\d{3}.\d{3}.\d{4}/g", web)
for itm in numbers
print itm
不知道发生了什么。我不断收到“预期字符串或缓冲区”的错误
numbers = re.findall(".....", web)
提前致谢。