(s string)
| 58 | var _alphaNumericDashUnderscoreRegex = regexp.MustCompile(`^[a-zA-Z0-9_\-]+$`) |
| 59 | |
| 60 | func IsAlphaNumericDashUnderscore(s string) bool { |
| 61 | return _alphaNumericDashUnderscoreRegex.MatchString(s) |
| 62 | } |
| 63 | |
| 64 | var _alphaNumericDotUnderscoreRegex = regexp.MustCompile(`^[a-zA-Z0-9_\.]+$`) |
| 65 |