Link Search Menu Expand Document

UString.Concat Method

Explanation Concatenates the string specified in the argument to the original string.

This method updates the value of the UString object.
Call format var s = str.Concat( text_1 [, text_2 [, … ] ] )
Return value Concatenated string
Arguments UString text_n String to concatenate
If multiple specifications are specified, all will be concatenated.
Exception Func-4 Invalid argument
Example of use
var str = new UString("ABC");
print(str.Concat("DEF", "GHI"), "\n");
print(str, "\n");
    
Related item