(s string)
| 52 | var _alphaNumericDashDotUnderscoreRegex = regexp.MustCompile(`^[a-zA-Z0-9_\-\.]+$`) |
| 53 | |
| 54 | func IsAlphaNumericDashDotUnderscore(s string) bool { |
| 55 | return _alphaNumericDashDotUnderscoreRegex.MatchString(s) |
| 56 | } |
| 57 | |
| 58 | var _alphaNumericDashUnderscoreRegex = regexp.MustCompile(`^[a-zA-Z0-9_\-]+$`) |
| 59 |