Search

Is AlphaNumeric

Last Updated: Dec 10, 2020

Articles

This function returns True if all characters in the string are alphanumeric (either alphabets or numbers). If not, it returns False.

Syntax

isAlphanumeric (input)

Parameters

Input Parameter Name Description
input input string

Returns

Return value Description
text Returns True or False

Sample

  1. isAlphanumeric (JIFFY) = True
  2. isAlphanumeric (JIFFY123) = True
  3. isAlphanumeric (123) = True
  4. isAlphanumeric (A%$^) = False
  5. isAlphanumeric (J) = True
  6. isAlphanumeric (1) = True

To view all the Text functions, click here.

Did you find what you were looking for?