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'
失落的羊2024-11-14 22:06
今日申请十年之约博客成员!
失落的羊2024-11-02 21:34
启用新的访问统计.
失落的羊2024-10-28 23:31
重新整理长篇连载栏目
失落的羊2024-10-19 10:35
构思公众号文章迁移计划
失落的羊2024-10-16 23:16
开始研究公众号后台自动回复