Home > Backend Development > Python Tutorial > Python正则表达式匹配ip地址实例

Python正则表达式匹配ip地址实例

WBOY
Release: 2016-06-16 08:41:16
Original
1555 people have browsed it

本文实例讲述了正则表达式匹配ip地址实例。代码结构非常简单易懂。分享给大家供大家参考。

主要实现代码如下:

import re
reip = re.compile(r'(&#63;<![\.\d])(&#63;:\d{1,3}\.){3}\d{1,3}(&#63;![\.\d])')
  for ip in reip.findall(line):
    print "ip>>>", ip

Copy after login

希望本文所述对大家的Python程序设计有所帮助。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template