Golang : Use regular expression to validate domain name
There are times when a user enter an invalid domain name as input and it is good to validate the domain name before processing further or store into database. So far, the best way to validate a domain name in Golang is still via regular expression.
There are couple of regular expressions out there that are generally accepted regular expression to validate a domain name. However, for this tutorial we will use :
^(([a-zA-Z]{1})|([a-zA-Z]{1}[a-zA-Z]{1})|([a-zA-Z]{1}[0-9]{1})|([0-9]{1}[a-zA-Z]{1})|
([a-zA-Z0-9][a-zA-Z0-9-_]{1,61}[a-zA-Z0-9])).([a-zA-Z]{2,6}|[a-zA-Z0-9-]{2,30}.[a-zA-Z]{2,3})$
Here we go!
package main
import (
"fmt"
"regexp"
)
func validateDomainName(domain string) bool {
// Golang does not support Perl syntax ((?
// will throw out :
// error parsing regexp: invalid or unsupported Perl syntax: `(?!`
//patternStr := "^((?!-)[A-Za-z0-9-]{1,63}(?<!-)\\.)+[A-Za-z]{2,6}$"
// use regular expression without Perl syntax
RegExp := regexp.MustCompile(`^(([a-zA-Z]{1})|([a-zA-Z]{1}[a-zA-Z]{1})|([a-zA-Z]{1}[0-9]{1})|([0-9]{1}[a-zA-Z]{1})|([a-zA-Z0-9][a-zA-Z0-9-_]{1,61}[a-zA-Z0-9]))\.([a-zA-Z]{2,6}|[a-zA-Z0-9-]{2,30}\.[a-zA-Z
]{2,3})$`)
return RegExp.MatchString(domain)
}
func main() {
domName := "www.golang.org"
if !validateDomainName(domName) {
fmt.Printf("Domain Name %s is invalid\n", domName)
} else {
fmt.Printf("Domain Name %s is VALID\n", domName)
}
domName = "www.socketloop,.com"
if !validateDomainName(domName) {
fmt.Printf("Domain Name %s is invalid\n", domName)
} else {
fmt.Printf("Domain Name %s is VALID\n", domName)
}
domName = "subdomain-socketloop.com"
if !validateDomainName(domName) {
fmt.Printf("Domain Name %s is invalid\n", domName)
} else {
fmt.Printf("Domain Name %s is VALID\n", domName)
}
domName = "-socketloop.com" // invalid starts with hyphen
if !validateDomainName(domName) {
fmt.Printf("Domain Name %s is invalid\n", domName)
} else {
fmt.Printf("Domain Name %s is VALID\n", domName)
}
domName = "socketloop.co_" // invalid ends with underscore
if !validateDomainName(domName) {
fmt.Printf("Domain Name %s is invalid\n", domName)
} else {
fmt.Printf("Domain Name %s is VALID\n", domName)
}
domName = "subdomain.socketloop.com"
if !validateDomainName(domName) {
fmt.Printf("Domain Name %s is invalid\n", domName)
} else {
fmt.Printf("Domain Name %s is VALID\n", domName)
}
}
Output :
Domain Name www.golang.org is VALID
Domain Name www.socketloop,.com is invalid
Domain Name subdomain-socketloop.com is VALID
Domain Name -socketloop.com is invalid
Domain Name socketloop.co_ is invalid
Domain Name subdomain.socketloop.com is VALID
References :
https://www.debuggex.com/r/y4Xe_hDVO11bv1DV
http://stackoverflow.com/questions/10306690/domain-name-validation-with-regex
See also : Golang : Validate email address with regular expression
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+13.1k Golang : Qt progress dialog example
+16.5k Golang : read gzipped http response
+12k Golang : Flush and close file created by os.Create and bufio.NewWriter example
+25.9k Golang : Convert(cast) string to uint8 type and back to string
+20.4k Golang : Saving private and public key to files
+25.4k Golang : How to read integer value from standard input ?
+21.2k Golang : GORM create record or insert new record into database example
+19k Golang : Execute shell command
+36.1k Golang : Convert(cast) int64 to string
+10k Golang : Convert file content to Hex
+16.1k Golang : Get IP addresses of a domain name
+16.3k Golang : File path independent of Operating System