UnicodeWith (Unicode function)

From m204wiki
Revision as of 06:08, 25 February 2011 by Goff (talk | contribs) (syntax terms, tags and links)
Jump to navigation Jump to search

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.
unicode A Unicode string.

Usage Notes

Example

  1. The following is a simple UnicodeWith call:

    begin %u is unicode initial('This is an at sign: ') print %u:unicodeWith('@':U) end

    The result is:

    This is an at sign: @

See also