UnicodeLength (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:Unicode:UnicodeLength subtitle}}
{{Template:Unicode:UnicodeLength subtitle}}
[[Category:Unicode methods|UnicodeLength function]]
<var>UnicodeLength</var> returns the number of characters in the method object string.
[[Category:Intrinsic methods]]
<!--DPL?? Category:Unicode methods|<var>UnicodeLength</var> function: Number of characters in string-->
<!--DPL?? Category:Intrinsic methods|<var>UnicodeLength</var> (Unicode function): Number of characters in string-->
<!--DPL?? Category:System methods|<var>UnicodeLength</var> (Unicode function): Number of characters in string-->


This function returns the number of characters in the method object string.
The <var>UnicodeLength</var> function is available as of version 7.5  of the <var class=product>Sirius Mods</var>.
==Syntax==
==Syntax==
{{Template:Unicode:UnicodeLength syntax}}
{{Template:Unicode:UnicodeLength syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%len</i> </th>
<tr><th>%number</th>
<td>A numeric variable to receive the result of the <var>UnicodeLength</var> method. </td></tr>
<td>A numeric variable to receive the result of the <var>UnicodeLength</var> method. </td></tr>
<tr><th><i>unicode</i> </th>
 
<td>A Unicode string.</td></tr>
<tr><th>unicode</th>
<td>A <var>Unicode</var> string.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>The <var>UnicodeLength</var> method is analogous to
<li><var>UnicodeLength</var> is available as of <var class="product">Sirius Mods</var> Version 7.5.
the String intrinsic [[Length (String function)|Length]] method.
</ul>
</ul>


==Examples==
==Examples==
The following fragment prints a <var>Unicode</var> string, then its length:
<p class="code">%u unicode initial ('&amp;#x40;xyz':[[U (String function)|U]])
print %u
print %u:unicodelength
</p>
The result is:
<p class="output">@xyz
4
</p>


The following fragment prints a Unicode string, then its length:
==See also==
<pre>
<ul>
    %u unicode initial ('&amp;#x40;xyz':U)
<li>The <var>UnicodeLength</var> method is analogous to the <var>String</var> intrinsic <var>[[Length (String function)|Length]]</var> method.
    Print %u
</ul>
    Print %u:unicodelength
</pre>


The result is:
{{Template:Unicode:UnicodeLength footer}}
<pre>
    @xyz
    4
</pre>

Latest revision as of 17:23, 6 November 2012

Length of this string (Unicode class)

UnicodeLength returns the number of characters in the method object string.

Syntax

%number = unicode:UnicodeLength

Syntax terms

%number A numeric variable to receive the result of the UnicodeLength method.
unicode A Unicode string.

Usage notes

  • UnicodeLength is available as of Sirius Mods Version 7.5.

Examples

The following fragment prints a Unicode string, then its length:

%u unicode initial ('&#x40;xyz':U) print %u print %u:unicodelength

The result is:

@xyz 4

See also

  • The UnicodeLength method is analogous to the String intrinsic Length method.