hasValidLength
Checks that the length of a string is valid for block execution
Example:
var result: Boolean? = null
"12345678".hasValidLength(8) { result = true }
result // trueContent copied to clipboard
Since
1.1.0
Checks that the length of a string is valid for block execution
Example:
var result: Boolean? = null
"12345678".hasValidLength(8) { result = true }
result // true1.1.0