python端口IP字符串是否合法
2020-12-27 16:27
标签:表达 com match spl python mat port pytho else 不使用正则表达式的方式: 使用正则表达式的方式 另一种 python端口IP字符串是否合法 标签:表达 com match spl python mat port pytho else 原文地址:https://www.cnblogs.com/hchan/p/13031788.htmldef is_ip(ip: str) -> bool:
return True if [True] * 4 == [x.isdigit() and 0
import re
def isIP(str):
p = re.compile(‘^((25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(25[0-5]|2[0-4]\d|[01]?\d\d?)$‘)
if p.match(str):
return True
else:
return False
def checkip(hostip):
pat = re.compile(r‘([0-9]{1,3})\.‘)
r = re.findall(pat,hostip+".")
if len(r)==4 and len([x for x in r if int(x)>=0 and int(x)
上一篇:Java list 取差集