UnicodeWith (Unicode function): Difference between revisions

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

Revision as of 20:10, 31 December 2010

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 UnicodeWith function is available as of version 7.6 of the Sirius Mods.

Syntax

  %outUni = unicode:UnicodeWith(unistring)

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: @