Difference between revisions of "$islower"

From Scriptwiki
Jump to: navigation, search
 
m
 
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 11: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