Concat()

Namespace ›› System ›› MfString ›› Methods ››
Parent Previous Next

Concat()

OutputVar := MfString.Concat(args*)

MfString.Concat(args*)

Creates the string representation of a specified objects.

Parameters

args*

An object array that contains the elements to concatenate.
Any var or object derived from MfObject can be an args

Returns

Returns The concatenated string var representations of the values of the elements args*

Remarks

Static Method.
Concatenates the string representations of the elements in a specified array.

Example

mfs := new MfString()
mfs.Append("The quick brown fox.")
str := " "
mfi := new MfInteger(2)
msg := " is a great number!"
strResult := MfString.Concat(mfs, str, mfi, msg)
MsgBox, 64, Result, %strResult%

Figure 1 Show the result of the above code sample.

Figure 1: