查找 HTML 页面上的所有 IP
我想用 python 获取一个 HTML 页面,然后从中打印出所有 IP。 我将 IP 定义如下:
x.x.x.x:y< /strong>
其中: x = 0 到 256 之间的数字。 y = 一个<<的数字 7 位数字。
谢谢。
I want to get an HTML page with python and then print out all the IPs from it.
I will define an IP as the following:
x.x.x.x:y
Where:
x = a number between 0 and 256.
y = a number with < 7 digits.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
实际操作:
In action:
尝试:
Try:
并不是要把这变成一场谁是更好的正则表达式作者之战,而是......
Not to turn this into a who's-a-better-regex-author-war but...
基本方法是:
urllib2
下载页面内容请提供更清晰的指示,说明您遇到问题的具体部分,并提供证据来表明您到目前为止已经尝试过的内容。
The basic approach would be:
urllib2
to download the contents of the pagePlease provide a clearer indication of what specific part you are having trouble with, along with evidence to show what it is you've tried thus far.
这是一个完整的示例:
Here is a complete example: