1

我有字符串:

http://example.com/a b.html https://example.net/a+b+c http://example.org/one two three

每个链接都以 http 或 https 开头,并且每个链接都包含空格
结尾的字符,是另一个链接的开头。我怎样才能得到

http://example.com/a b.html
https://example.net/a+b+c
http://example.org/one two three.html

使用正则表达式?

4

1 回答 1

2

这个正则表达式应该找到你需要的:

https?.+?(?=http|$)
于 2012-07-18T20:24:49.627 回答