Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Description

Excerpt

Returns true if the provided argument str is a string containing only letters and digits.

...

Code Block
wret = isAlphaNumeric("foobar");
print(wret);

Print true

Example 2

Code Block
wret = isAlphaNumeric("aaa2345G");
print(wret);

Print true

Example 3

Code Block
wret = isAlphaNumeric("23asd.*;45");
print(wret);

Print false

Notes

Note

isAlphaNumeric returns false if the character string str contains blanks or special characters or is a null string.

...