Golang : Regular Expression for alphanumeric and underscore
Problem :
Need a regular expression that only allows upper, lowercase characters, underscores and numbers for Go.
Solution :
Use this regular expression
"^[a-zA-Z0-9_]*$"
Explanations:
^ : start of string
[ : beginning of character group
a-z : any lowercase letter
A-Z : any uppercase letter
0-9 : any digit
_ : underscore
] : end of character group
* : zero or more of the given characters
$ : end of string
Go source code :
package main
import "fmt"
import "regexp"
func main() {
a := "testing_123"
re := regexp.MustCompile("^[a-zA-Z0-9_]*$")
fmt.Println(re.MatchString("123"))
fmt.Println(re.MatchString("abc"))
fmt.Println(re.MatchString(a))
fmt.Println(re.MatchString("世界"))
}
Output :
true
true
true
false
Reference :
http://stackoverflow.com/questions/336210/regular-expression-for-alphanumeric-and-underscores
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
+18.9k Golang : convert int to string
+10.5k Golang : How to check if a website is served via HTTPS
+12.1k Golang : Convert decimal number(integer) to IPv4 address
+3.6k Golang : Fix go-cron set time not working issue
+6.9k Golang : Derive cryptographic key from passwords with Argon2
+9.3k Golang : Handle sub domain with Gin
+14.8k Golang : How to check if your program is running in a terminal
+7.1k How to let Facebook Login button redirect to a particular URL ?
+10.1k Golang : ffmpeg with os/exec.Command() returns non-zero status
+11.4k Golang : How to determine a prime number?
+33.2k Delete a directory in Go
+11.1k Android Studio : Checkbox for user to select options example