Regular expression to extract domain from URL
Example
package main
import (
"fmt"
"regexp"
)
func main() {
str1 := `http://www.suon.co.uk/product/1/7/3/`
re := regexp.MustCompile(`^(?:https?:\/\/)?(?:[^@\/\n]+@)?(?:www\.)?([^:\/\n]+)`)
fmt.Printf("Pattern: %v\n", re.String()) // print pattern
fmt.Println(re.MatchString(str1)) // true
submatchall := re.FindAllString(str1,-1)
for _, element := range submatchall {
fmt.Println(element)
}
}
Output
Pattern: ^(?:https?:\/\/)?(?:[^@\/\n]+@)?(?:www\.)?([^:\/\n]+)
true
http://www.suon.co.uk
Most Helpful This Week
Regex to extract image name from HTML in Golang
Regular expression to extract all Non-Alphanumeric Characters from a String
Split a string at uppercase letters using regular expression in Golang
Regular expression to extract filename from given path in Golang
Regular expression for matching HH:MM time format in Golang
Replace any non-alphanumeric character sequences with a dash using Regex