xurls 可以从纯文本中使用正则表达式提取 URL。
<pre class="brush:shell;toolbar: true; auto-links: false;">go get github.com/mvdan/xurls</pre>
使用示例
<pre class="brush:cpp;toolbar: true; auto-links: false;">import "github.com/mvdan/xurls"
func main() {
xurls.Relaxed.FindString("Do gophers live in golang.org?")
// "golang.org"
xurls.Relaxed.FindAllString("foo.com is http://foo.com/.", -1)
// []string{"foo.com", "http://foo.com/"}
xurls.Strict.FindAllString("foo.com is http://foo.com/.", -1)
// []string{"http://foo.com/"}
}</pre>