UnicodeWith (Unicode function): Difference between revisions
Jump to navigation
Jump to search
(Created page with "<span style="font-size:120%; color:black"><b>Concatenation of Unicode string with another</b></span> UnicodeWith function [[Category:Intrin...") |
m (1 revision) |
(No difference)
|
Revision as of 08:55, 10 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 function in the example is described ??U.
Begin %u is unicode Initial('This is an at sign: ') Print %u:unicodeWith('@':U) End
The result is:
This is an at sign: @