github.com/cosmos/cosmos-sdk@v0.50.10/types/router.go (about)

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