Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 245 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 245 Bytes

yurls

Extract urls from text using regular expressions. Requires Go 1.22 or later.

import "github.com/opentreehole/yurls"

func main() {
	findUrls := yurls.Parse("https://example.com foo bar") // []string{"https://example.com"}
}