From WikiChip
Difference between revisions of "mirc/identifiers/$islower"
< mirc‎ | identifiers

Line 1: Line 1:
  
  
{{mirc title|$islower Identifier}}'''$islower(text)''' Returns $true if text is all lower case otherwise returns $false.
+
{{mirc title|$islower Identifier}}'''$islower''' Returns $true if text is all lower case, otherwise returns $false.
  
 
== Synopsis ==
 
== Synopsis ==
Line 9: Line 9:
 
== Paramters ==
 
== Paramters ==
  
'''Text''' = ''Will be the given text that you want to check for.''
+
'''text''' - The input string to be checked
  
 
== Properties ==
 
== Properties ==
Line 18: Line 18:
 
<source lang="mIRC">//echo -a $islower(abcdefg)</source>
 
<source lang="mIRC">//echo -a $islower(abcdefg)</source>
  
It will return '''$true''' because it's the hole given text in lower case.
+
will return '''$true'''
  
 
<source lang="mIRC">//echo -a $islower(abcdefG)</source>
 
<source lang="mIRC">//echo -a $islower(abcdefG)</source>
  
It will return '''$false''' because it's ''NOT'' the hole given text in lower case.
+
will return '''$false''' because not all the character are lower case
  
 
== Compatibility ==
 
== Compatibility ==

Revision as of 14:24, 12 June 2017


$islower Returns $true if text is all lower case, otherwise returns $false.

Synopsis

$islower(text)

Paramters

text - The input string to be checked

Properties

None

Example

//echo -a $islower(abcdefg)

will return $true

//echo -a $islower(abcdefG)

will return $false because not all the character are lower case

Compatibility

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