UnicodeWith (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 2: Line 2:
[[Category:Unicode methods|UnicodeWith function]]
[[Category:Unicode methods|UnicodeWith function]]
[[Category:Intrinsic methods]]
[[Category:Intrinsic methods]]
<!--DPL?? Category:Unicode methods|UnicodeWith function: Concatenation of Unicode string with another-->
<!--DPL?? Category:Unicode methods|<var>UnicodeWith</var> function: Concatenation of Unicode string with another-->
<!--DPL?? Category:Intrinsic methods|UnicodeWith (Unicode function): Concatenation of Unicode string with another-->
<!--DPL?? Category:Intrinsic methods|<var>UnicodeWith</var> (Unicode function): Concatenation of Unicode string with another-->
<!--DPL?? Category:System methods|UnicodeWith (Unicode function): Concatenation of Unicode string with another-->
<!--DPL?? Category:System methods|<var>UnicodeWith</var> (Unicode function): Concatenation of Unicode string with another-->


This function returns the Unicode string that is the concatenation of
This function returns the Unicode string that is the concatenation of
the method object Unicode string and its Unicode string argument.
the method object Unicode string and its Unicode string argument.


The UnicodeWith function is available as of version 7.6  of the <var class=product>Sirius Mods</var>.
The <var>UnicodeWith</var> function is available as of version 7.6  of the <var class=product>Sirius Mods</var>.
==Syntax==
==Syntax==
{{Template:Unicode:UnicodeWith syntax}}
{{Template:Unicode:UnicodeWith syntax}}
Line 15: Line 15:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%outUni</i> </th>
<tr><th><i>%outUni</i> </th>
<td>A Unicode variable to receive the result of the UnicodeWith method. </td></tr>
<td>A Unicode variable to receive the result of the <var>UnicodeWith</var> method. </td></tr>
<tr><th><i>unicode</i> </th>
<tr><th><i>unicode</i> </th>
<td>A Unicode string. </td></tr>
<td>A Unicode string. </td></tr>
Line 23: Line 23:
===Example===
===Example===


The following is a simple UnicodeWith call:
The following is a simple <var>UnicodeWith</var> call:
The [[U (String function)|U constant function]] is used in the example.
The [[U (String function)|U constant function]] is used in the example.
<pre>
<pre>

Revision as of 15:32, 19 January 2011

Concatenate this Unicode string with another (Unicode class)

This function returns the Unicode string that is the concatenation of the method object Unicode string and its Unicode string argument.

The UnicodeWith function is available as of version 7.6 of the Sirius Mods.

Syntax

%outUnicode = unicode:UnicodeWith( unicode2)

Syntax terms

%outUni A Unicode variable to receive the result of the UnicodeWith method.
unicode A Unicode string.
unistring A Unicode string.

Example

The following is a simple UnicodeWith call: The U constant function is used in the example.

    Begin
      %u is unicode Initial('This is an at sign: ')
      Print %u:unicodeWith('&#x40;':U)
    End

The result is:

    This is an at sign: @