HOME WEB NEWS IMAGES CLASSIFIEDS YELLOW PAGESPOLLS - SURVEYS WIKI COUNTRIES PHOTOS US UK INDIA
Avoo.com provides meta search results from various sources

Concatenation


Google




This article is part of
the Programming Language Comparison
series.
General Comparison
Basic Syntax
Basic Instructions
Arrays
Associative arrays
String Operations
String Functions
Database access

Evaluation strategy
List of "hello world" programs

Comparison of ALGOL 68 and C++
Compatibility of C and C++
Comparison of C and Pascal
Comparison of C++ and Java
Comparison of C# and Java
Comparison of C# and Visual Basic .NET
Comparison of ABAP and Java

In computer programming, concatenation is the operation of joining two character strings end to end. For example, the strings "foo" and "bar" may be concatenated to give "foobar". In programming languages, string concatenation is a binary operation usually accomplished by putting a concatenation operator between two strings (operands).

For example, the following expression uses the "+" symbol as the concatenation operator:

print "Hello " + "World";

which produces the output:

   Hello World

Contents

Different languages

Main article: Comparison of programming languages (strings)

Different languages use different operators. Most languages use the "+" sign though several deviate from this norm.

Examples

   +       ;; BASIC, C++, Pascal, JavaScript, Java, Python, Ruby, C#, ActionScript
   &       ;; Ada, AppleScript, VHDL, Visual Basic 
   .       ;; Perl (before version 6), PHP, and Maple (up to version 5)

For a more detailed comparison, please see the concatenation comparison article.

Programming conventions

Assignment

Many languages, such as PHP and JavaScript have a variant of the assignment operator that allows concatenation and assignment to a variable in one statement.

For example, in PHP and Perl: //Example 1 (concatenation operator ".") $var = "Hello "; $var = $var . "World";

//Example 2 (combined assignment and concatenation ".=") $var = "Hello "; $var .= "World";

Both examples produce the same result.

Interpolation

Some languages, (such as Perl, PHP, and most Unix shells), support variable interpolation as an alternative form of string concatenation.

For example, in Perl, the concatenation syntax:

my $stringVar; $stringVar = "World"; print "Hello " . $stringVar;

can be substituted with the string literal syntax:

my $stringVar; $stringVar = "World"; print "Hello $stringVar";

since double quoted string literals in Perl indicate scalar variables with the sigil ($) character.

See also

External links

This article is licensed under the GNU Free Documentation License. It uses material from Wikipedia


Advertise with Us | Search Marketing | Help | Suggest a Site | Privacy Policy
© 2008 www.avoo.com. All rights reserved.