Search

Is Alpha Or Not

Last Updated: Dec 10, 2020

Articles

This function returns True if all characters in the string are alphabets. If not, it returns False.

Syntax

isAlphaorNot (input)

Parameters

Input Parameter Name Description
input input string

Returns

Return value Description
text Returns True or False

Sample

  1. isAlphaorNot (JIFFY) = True
  2. isAlphaorNot (123) = False
  3. isAlphaorNot (JIFFY123) = False
  4. isAlphaorNot (1) = False
  5. isAlphaorNot (A) = True

To view all the Text functions, click here.

Did you find what you were looking for?