Reference.StringConcat History
Show minor edits - Show changes to markup
December 12, 2011, at 03:50 PM
by Scott Fitzgerald -
Changed lines 9-10 from:
to:
string.concat(string, string2)
Changed lines 21-22 from:
to:
October 03, 2010, at 02:04 PM
by Tom Igoe -
Changed lines 3-4 from:
equals()
to:
concat()
October 03, 2010, at 02:00 PM
by Tom Igoe -
Changed line 21 from:
to:
October 03, 2010, at 01:59 PM
by Tom Igoe -
Changed line 21 from:
to:
October 03, 2010, at 01:59 PM
by Tom Igoe -
Added lines 1-21:
String
equals()
Description
Combines, or concatenates two strings into one new String. The second string is appended to the first, and the result is placed in a new String
Syntax
string.concat(string2)
Parameters
string, string2: variables of type String
Returns
new String that is the combination of the original two Strings
Example
See also