hasLettersAndDigits

@get:JvmName(name = "hasLettersAndDigits")
val String.hasLettersAndDigits: Boolean

Return a Boolean if the string contains both letter and digit.

Example:

"Hello55".hasLettersAndDigits // true
"123".hasLettersAndDigits // false
"hello".hasLettersAndDigits // false

Since

1.1.0