$isupper: Difference between revisions

From Scriptwiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
 
Line 9: Line 9:


== See also ==
== See also ==
 
* [[$islower]] the counterpart of $isupper.
* The counterpart of this identifier is [[$islower]]


[[Category:Text and Number Identifiers]]
[[Category:Text and Number Identifiers]]

Latest revision as of 09:04, 2 July 2007

Returns $true if text specified is all upper case.

$isupper(text)

Example

$isupper(HELLO)  ;returns $true as HELLO is all upper case
$isupper(WiCKED)  ;returns $false as WiCKED is not all upper case 

See also