获取两个子字符串之间的字符串忽略第二个子字符串

时间:2016-11-18 13:20:37

标签: 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

0 个答案:

没有答案