UnicodeWith (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:Unicode:UnicodeWith subtitle}}
{{Template:Unicode:UnicodeWith subtitle}}
[[Category:Unicode methods|UnicodeWith function]]
<var>UnicodeWith</var> returns the <var>Unicode</var> string that is the concatenation of the method object <var>Unicode</var> string and its <var>Unicode</var> string argument.
[[Category:Intrinsic methods]]
<!--DPL?? Category:Unicode methods|<var>UnicodeWith</var> 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|<var>UnicodeWith</var> (Unicode function): Concatenation of Unicode string with another-->


This function returns the Unicode string that is the concatenation of
the method object Unicode string and its Unicode string argument.
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}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%outUni</i></th>
<tr><th>%outUnicode</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>unicode</th>
<td>A Unicode string. </td></tr>
<td>A <var>Unicode</var> string. </td></tr>
<tr><th><i>unistring</i></th>
<tr><th>unicode2</th>
<td>A Unicode string.</td></tr>
<td>A <var>Unicode</var> string.</td></tr>
</table>
</table>
===Example===


==Usage Notes==
<ul>
<li><var>UnicodeWith</var> is available as of <var class="product">Sirius Mods</var> Version 7.6.
</ul>
==Examples==
The following is a simple <var>UnicodeWith</var> call:
The following is a simple <var>UnicodeWith</var> call:
The [[U (String function)|U constant function]] is used in the example.
<p class="code">begin
<pre>
  %u is unicode initial('This is an at sign: ')
    Begin
  print %u:unicodeWith('&amp;#x40;':[[U (String function)|U]])
      %u is unicode Initial('This is an at sign: ')
end
      Print %u:unicodeWith('&amp;#x40;':U)
</p>
    End
The result is:
</pre>
<p class="output">This is an at sign: @
</p>


The result is:
==See also==
<pre>
{{Template:Unicode:UnicodeWith footer}}
    This is an at sign: @
</pre>

Latest revision as of 20:42, 6 November 2012

Concatenate this Unicode string with another (Unicode class)

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

Syntax

%outUnicode = unicode:UnicodeWith( unicode2)

Syntax terms

%outUnicode A Unicode variable to receive the result of the UnicodeWith method.
unicode A Unicode string.
unicode2 A Unicode string.

Usage Notes

  • UnicodeWith is available as of Sirius Mods Version 7.6.

Examples

The following is a simple UnicodeWith call:

begin %u is unicode initial('This is an at sign: ') print %u:unicodeWith('&#x40;':U) end

The result is:

This is an at sign: @

See also