String concatenation
This is an old revision of this page, as edited by Hsmom (talk | contribs) at 16:00, November 30, 2008. It may differ significantly from current revision.
In computer programming, a string is a series of characters. The characters can be alphabetic, numeric or special characters, or a combination thereof. String concatenation, in very simple terms, is the joining of two strings. A numeric string must be converted to a numeric type before it can be used in calculations. Concatenation is language dependent and may have different operators depending on the computer programming language used.
Example
a = "this is"
b = "my name."
print ab
printed > this ismy name (note no space between is and my )
print a + b
printed> this is my name ( the + operator joins the strings with a space between them. )