From WikiChip
Editing mirc/identifiers/$len
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
− | |||
+ | |||
+ | {{mirc title|$len Identifier}}'''$len(text)''' Returns the length of text. | ||
== Synopsis == | == Synopsis == | ||
Line 8: | Line 9: | ||
== Paramters == | == Paramters == | ||
− | ''' | + | '''Text''' = ''Will be the given text that you want to use for.'' |
== Properties == | == Properties == | ||
Line 17: | Line 18: | ||
<source lang="mIRC">//echo -a $len(ONE)</source> | <source lang="mIRC">//echo -a $len(ONE)</source> | ||
− | will return '''3''' | + | It will return '''3''' because it's the correct length of the text. |
+ | |||
+ | <source lang="mIRC">//echo -a $islower(ONE TWO)</source> | ||
+ | |||
+ | It will return '''7''' because it is counting all the text ASCII characters as the total legth of the text. | ||
− | <source lang="mIRC">//echo -a $len( | + | <source lang="mIRC">//echo -a $len(12345)</source> |
− | will return ''' | + | It will return '''5''' because it can count and numbers included the text as the length of the text. |
== Compatibility == | == Compatibility == | ||
{{mIRC compatibility|4.5}} | {{mIRC compatibility|4.5}} | ||
− | == See | + | == See Also == |
+ | [[Category:MIRC identifiers]] | ||
* {{mIRC|$count}} | * {{mIRC|$count}} | ||
− | |||
− |