Search

Is Uppercase

Last Updated: Dec 10, 2020

Articles

This function returns True if all alphabets in a string are uppercase alphabets. If the string contains at least one lowercase alphabet then it returns False.

Syntax

isUppercase (input)

Parameters

Input Parameter Name Description
input input string

Returns

Return value Description
text Returns True or False

Sample

  1. isUppercase (JIFFY) = True
  2. isUppercase (jiffy) = False

To view all the Text functions, click here.

Did you find what you were looking for?