$islower: 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 ==
 
* [[$isupper]] the counterpart of $islower.
* The counterpart of this identifier is [[$isupper]]


[[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 lower case.

$islower(text)

Example

$islower(helloworld)  ;returns $true as helloworld is all lower case
$islower(HelloWorld)  ;returns $false as HelloWorld is not all lower case 

See also