cosmos-sdk/types/router.go
2022-12-12 10:47:42 -05:00

10 lines
200 B
Go

package types
import (
"regexp"
)
// IsAlphaNumeric defines a regular expression for matching against alpha-numeric
// values.
var IsAlphaNumeric = regexp.MustCompile(`^[a-zA-Z0-9]+$`).MatchString