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

(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 ==...")
 
Line 1: Line 1:
  
  
{{mirc title|$islower Identifier}}'''$islower(text)''' Returns $true if text is all lower case.
+
{{mirc title|$islower Identifier}}'''$islower(text)''' Returns $true if text is all lower case otherwise returns $false.
  
 
== Synopsis ==
 
== Synopsis ==

Revision as of 09:08, 12 June 2017


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

Synopsis

$islower(text)

Paramters

Text = Will be the given text that you want to check for.

Properties

None

Example

//echo -a $islower(abcdefg)

It will return $true because it's the hole given text in lower case.

//echo -a $islower(abcdefG)

It will return $false because it's NOT the hole given text in lower case.

Compatibility

Added: mIRC v4.7
Added on: 09 Dec 1996
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also