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|<var>UnicodeWith</var> function: Concatenation of Unicode string with another-->
<!--DPL?? Category:<var>Unicode</var> methods|<var>UnicodeWith</var> function: Concatenation of <var>Unicode</var> string with another-->
<!--DPL?? Category:Intrinsic methods|<var>UnicodeWith</var> (Unicode function): Concatenation of Unicode string with another-->
<!--DPL?? Category:Intrinsic methods|<var>UnicodeWith</var> (<var>Unicode</var> function): Concatenation of <var>Unicode</var> string with another-->
<!--DPL?? Category:System methods|<var>UnicodeWith</var> (Unicode function): Concatenation of Unicode string with another-->
<!--DPL?? Category:<var>System</var> methods|<var>UnicodeWith</var> (<var>Unicode</var> function): Concatenation of <var>Unicode</var> string with another-->


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


The <var>UnicodeWith</var> 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>.
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 <var>UnicodeWith</var> method. </td></tr>
<td>A <var>Unicode</var> 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 <var>Unicode</var> string. </td></tr>
<tr><th><i>unistring</i></th>
<tr><th><i>unistring</i></th>
<td>A Unicode string.</td></tr>
<td>A <var>Unicode</var> string.</td></tr>
</table>
</table>
===Example===
===Example===

Revision as of 15:49, 20 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: @