package main
import (
"regexp"
"fmt"
)
func main() {
var re = regexp.MustCompile(`(?m)(?:http(?:s|):\/\/(?:www\.|)example\.com\/)([^\/]+)\/(season-[0-9]{1,}|)((.+)\.html)`)
var str = `https://example.com/serial/season-2/episode-3.html
https://example.com/serial/episode-1.html
http://example.com/serial/season-21/episode-3.html
http://example.com/serial/episode-1.html
https://www.example.com/serial/season-233/episode-3.html
https://www.example.com/serial/episode-21.html
как-то так
Так же в регулярку добавил варианты протоколов и с www
Ну и вам будет нужно то
$1 -название сериала
$2 эпизод если он есть
$3 эпизод без хтмл
$4 Эпизод с .html
`
for i, match := range re.FindAllString(str, -1) {
fmt.Println(match, "found at index", i)
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Golang, please visit: https://golang.org/pkg/regexp/