IsUpperAlphanumeric returns whether or not a rune is an 'upper alphanumeric character' Upper alphanumeric characters are defined as numbers or upper-case letters
(r rune)
| 290 | // IsUpperAlphanumeric returns whether or not a rune is an 'upper alphanumeric character' |
| 291 | // Upper alphanumeric characters are defined as numbers or upper-case letters |
| 292 | func IsUpperAlphanumeric(r rune) bool { |
| 293 | return IsUpperLetter(r) || unicode.IsNumber(r) |
| 294 | } |
| 295 | |
| 296 | // IsLowerAlphanumeric returns whether or not a rune is a 'lower alphanumeric character' |
| 297 | // Lower alphanumeric characters are defined as numbers or lower-case letters |
no test coverage detected