Python3学习笔记7 
如何用正则表达式提取IP地址


def extract_ip(str_line):
    result = re.findall(r'\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b',str_line)
    if result:
        return result[0]
    else :
        return '0'