From WikiChip
Difference between revisions of "mirc/identifiers/$islower"
(Created page with " {{mirc title|$islower Identifier}}'''$islower(text)''' Returns $true if text is all lower case. == Synopsis == <source lang="mIRC"> $islower(text)</source> == Paramters ==...") |
m |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{mirc title|$islower Identifier}}'''$islower''' Returns $true if text is all lower case, otherwise returns $false. | ||
− | |||
− | |||
== Synopsis == | == Synopsis == | ||
Line 9: | Line 8: | ||
== Paramters == | == Paramters == | ||
− | ''' | + | '''text''' - The input string to be checked |
== Properties == | == Properties == | ||
Line 18: | Line 17: | ||
<source lang="mIRC">//echo -a $islower(abcdefg)</source> | <source lang="mIRC">//echo -a $islower(abcdefg)</source> | ||
− | + | will return '''$true''' | |
<source lang="mIRC">//echo -a $islower(abcdefG)</source> | <source lang="mIRC">//echo -a $islower(abcdefG)</source> | ||
− | + | will return '''$false''' because not all the character are lower case | |
== Compatibility == | == Compatibility == | ||
− | {{mIRC compatibility| | + | {{mIRC compatibility|5.61}} |
− | == See | + | == See also == |
− | |||
* {{mIRC|$isupper}} | * {{mIRC|$isupper}} | ||
* {{mIRC|$true}} | * {{mIRC|$true}} | ||
* {{mIRC|$false}} | * {{mIRC|$false}} | ||
+ | {{mIRC identifier list}} | ||
+ | [[Category:mIRC identifiers|islower]] |
Latest revision as of 15:33, 20 September 2017
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
$islower Returns $true if text is all lower case, otherwise returns $false.
Synopsis[edit]
$islower(text)
Paramters[edit]
text - The input string to be checked
Properties[edit]
None
Example[edit]
//echo -a $islower(abcdefg)
will return $true
//echo -a $islower(abcdefG)
will return $false because not all the character are lower case
Compatibility[edit]
Added: mIRC v5.61
Added on: 23 Sep 1999
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See also[edit]
mIRC identifier list