在下面的字符串中,正则表达式将匹配这两个条件,
aa="192.168.251.135,henry,thesecond,0"
aa1="192.168.254.35,henry,0"
#The below regular expression would satisfy bot aa and aa1
re.findall(r"(\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b),((?:\w+,\w+|\w+)),(\d+)",aa)
我的问题是在字符串中ab="192.168.251.135,henry,thesecond,"
如果整数最后不存在,是否可以通过扩展上述 re.findall() 在输出中附加 1