Reference.StringConcat History
Hide minor edits - Show changes to output
December 12, 2011, at 03:50 PM
by Scott Fitzgerald -
Changed lines 9-10 from:
''string''.concat(string2)
to:
''string''.concat(string, string2)
Changed lines 21-22 from:
* [[Tutorial/StringAdditionOperator|String Addition operator]]
to:
* [[Tutorial/StringAdditionOperator|String Addition operator]]\\
\\
October 03, 2010, at 02:04 PM
by Tom Igoe -
Changed lines 3-4 from:
to:
October 03, 2010, at 02:00 PM
by Tom Igoe -
Changed line 21 from:
* [[Tutorial/StringAppendOperator|String Addition operator]]
to:
* [[Tutorial/StringAdditionOperator|String Addition operator]]
October 03, 2010, at 01:59 PM
by Tom Igoe -
Changed line 21 from:
* [[String Addition operator |Tutorial/StringAppendOperator]]
to:
* [[Tutorial/StringAppendOperator|String Addition operator]]
October 03, 2010, at 01:59 PM
by Tom Igoe -
Added lines 1-21:
[[StringObject | 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
* [[Tutorial/StringAppendOperator]]
!!!!See also
* [[String Addition operator |Tutorial/StringAppendOperator]]