validate Alphanumeric
Validates if the provided string in options contains only alphanumeric characters.
Returns true if the string is alphanumeric, otherwise false.
Example usage:
val isValid = validateAlphanumeric(ValidateAlphanumericOptions(str = "abc123"))
Logger.d("ValidateAlphanumeric", isValid) // Output: trueContent copied to clipboard