标签: python regex
我有字符串:
a = '/imo:9615169/mmsi:373239000/vessel:ALAM%20MUTIARA'
使用正则表达式,
result = re.search('imo:(.*)/', a) print(result.group(1)) #prints 9284764/mmsi:354662000
为什么打印9284764/mmsi:354662000而不仅仅是9284764?
9284764/mmsi:354662000
9284764