Golang : Validate email address
Problem :
You need a quick way to validate if a user has entered a valid email address without knowing how to write the regular expression to parse the email address.
Solution :
Use IsEmail
function from github.com/asaskevich/govalidator
package. For example :
package main
import (
"fmt"
"github.com/asaskevich/govalidator"
)
func main() {
testAddress := "adamng@socketloop.com"
valid := govalidator.IsEmail(testAddress)
fmt.Printf("%s is a valid email address : %v \n", testAddress, valid)
testAddress2 := ".adamng@socketloop.com"
valid2 := govalidator.IsEmail(testAddress2)
fmt.Printf("%s is a valid email address : %v \n", testAddress2, valid2)
testAddress3 := "adamng()@socketloop.com"
valid3 := govalidator.IsEmail(testAddress3)
fmt.Printf("%s is a valid email address : %v \n", testAddress3, valid3)
testAddress4 := "adamng_@socketloop.com"
valid4 := govalidator.IsEmail(testAddress4)
fmt.Printf("%s is a valid email address : %v \n", testAddress4, valid4)
}
Output :
adamng@socketloop.com is a valid email address : true
.adamng@socketloop.com is a valid email address : false
adamng()@socketloop.com is a valid email address : false
adamng_@socketloop.com is a valid email address : true
Reference :
See also : Golang : Send email and SMTP configuration example
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
+7.7k Golang : Hue, Saturation and Value(HSV) with OpenCV example
+10.9k Golang : Interfacing with PayPal's IPN(Instant Payment Notification) example
+7.3k Golang : Array mapping with Interface
+5.8k Unix/Linux : How to find out the hard disk size?
+9.1k Golang : Gaussian blur on image and camera video feed examples
+10.7k Generate Random number with math/rand in Go
+8.9k Golang : Gorilla web tool kit schema example
+14.7k Golang : How to pass map to html template and access the map's elements
+7.6k Golang : Gorrila set route name and get the current route name
+5.7k PHP : Convert CSV to JSON with YQL example
+15.8k Chrome : ERR_INSECURE_RESPONSE and allow Chrome browser to load insecure content
+10.4k Golang : Convert file content to Hex