cosmos-sdk/types/router.go
Marco 8a9467ccdd
fix(docs,code): correct spelling and grammar across comments, tests, and documentation (#25172)
Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
2025-08-14 19:35:04 +00:00

10 lines
199 B
Go

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