Tagged Questions

Refers to the joining of two or more tokens into a single token. In programming, this generally refers to string concatenation, which joins multiple strings into a single string.

learn more… | top users | synonyms (1)

227
votes
13answers
15k views

Why does [1,2] + [3,4] = “1,23,4” in JavaScript?

I wanted to add the elements of an array into another, so I tried this simple sentence in our beloved Firebug: [1,2] + [3,4] It responded with: "1,23,4" What is going on?
135
votes
28answers
128k views

How to concatenate two arrays in Java?

I need to concatenate two String arrays in Java. void f(String[] first, String[] second) { String[] both = ??? } What is the easiest way to do this?
58
votes
18answers
67k views

C++ concatenate string and int

I thought this would be really simple but it's presenting some difficulties. If I have string name = "John"; int age = 21; How do I combine them to get a single string "John21"?
32
votes
12answers
8k views

StringBuilder vs String concatenation in toString() in Java

Given the 2 toString() implementations below, which is prefered public String toString(){ return "{a:"+ a + ", b:" + b + ", c: " + c +"}"; } or public String toString(){ StringBuilder sb = ...
32
votes
5answers
20k views

How to use GROUP BY to concatenate strings in MySQL?

Basically the question is how to get from this: id string 1 A 1 B 2 C to this: id string 1 A B 2 C
29
votes
4answers
14k views

how to concat two stl vectors?

how to concat two stl vectors?
26
votes
11answers
36k views

JavaScript string concatenation

On my team, we usually do string concatentation like this: var url = // some dynamically generated URL var sb = new StringBuffer(); sb.append("<a href='").append(url).append("'>click ...
24
votes
8answers
13k views

php String Concatenation, Performance

In languages like Java and C#, strings are immutable and it can be computationally expensive to build a string one character at a time. In said languages, there are library classes to reduce this ...
21
votes
5answers
540 views

Concatenate two string literals

I am very new to programming, and am reading Accelerated C++ by Koenig. Anyways, I am learning about strings and he writes that "the new idea is that we can use + to concatenate a string and a string ...
20
votes
7answers
14k views

Python: List concatenation. What is difference in “append” and “+= []”?

What is the difference in: some_list1 = [] some_list1.append("something") and some_list2 = [] some_list2 += ["something"] I hope this hasn't been already posted. If so just point me in that ...
19
votes
4answers
6k views

How to append an array to an existing JavaScript Array?

There doesn't seem to be a way to append an array to an existing JavaScript Array, i.e. to emulate Python's extend method. What I want to achieve is the following: >>> a = [1, 2] [1, 2] ...
19
votes
8answers
4k views

Is it better practice to use String.format over string Concatenation in Java?

Is there a perceptable difference between using String.Format and string concatenation in Java? I tend to use String.format but occasionally will slip and use a concat, I was wondering if one was ...
17
votes
11answers
2k views

Why a full stop, “.” and not a plus symbol, “+”, for string concatenation in PHP?

Why did the designers of PHP decide to use a full stop / period / "." as the string concatenation operator rather than the more usual plus symbol "+" ? Is there any advantage to it, or any reason at ...
17
votes
9answers
29k views

Concatenating strings in C, which method is more efficient?

I came across these two methods to concatenate strings: Common part: char* first= "First"; char* second = "Second"; char* both = malloc(strlen(first) + strlen(second) + 2); Method 1: strcpy(both, ...
16
votes
2answers
5k views

C preprocessor and concatenation

I am trying to write a code, where name of functions are dependent on the value of a certain macro variable. To be specific, I am trying to write a macro like this: #define VARIABLE 3 #define ...
14
votes
6answers
1k views

Make String concatenation faster in C# [closed]

Possible Duplicate: What's the best string concatenation method using C#? Hi, I have a code snippet like this where a large content of data is read from a file and check each position ...
14
votes
6answers
3k views

How to concatenate strings in django templates?

I want to concatenate string in django template tag like {% extend shop/shop_name/base.html %} here shop_name is my variable and i want to concatenate this with rest of path. suppese i have ...
14
votes
9answers
11k views

Efficient string concatenation in C++

I heard a few people expressing worries about "+" operator in std::string and various workarounds to speed up concatenation. Are any of these really necessary? If so, what is the best way to ...
13
votes
1answer
1k views

What happens when Java Compiler sees many String concatenations in one line?

Suppose I have an expression in Java such as: String s = "abc" + methodReturningAString() + "ghi" + anotherMethodReturningAString() + "omn" + "blablabla"; What's the behaviour of ...
13
votes
1answer
11k views

MySQL Results as comma separated list

I need to run a query like: SELECT p.id, p.name, (SELECT name FROM sites s WHERE s.id = p.site_id) AS site_list FROM publications p But I'd like the sub-select to return a comma separated list, ...
13
votes
10answers
36k views

C String Concatenation

I'm working in C and I have to concatenate a few things. Right now I have this: message = strcat("TEXT " + var); message2 = strcat(strcat("TEXT ", foo), strcat(" TEXT ", bar)); Now if you have ...
12
votes
6answers
3k views

Include constant in string without concatenating

Is there a way in PHP to include a constant in a string without concatenating?
12
votes
9answers
59k views

How can I combine multiple rows into a comma-delimited list in Oracle?

I have a simple query: select * from countries with the following results: country_name ------------ Albania Andorra Antigua ..... I would like to return the results in one row, so like this: ...
11
votes
8answers
623 views

Does string concatenation use StringBuilder internally?

Three of my coworkers just told me that there's no reason to use a StringBuilder in place of concatenation using the + operator. In other words, this is fine to do with a bunch of strings: myString1 + ...
11
votes
5answers
22k views

XSLT concat string, remove last comma

I need to build up a string using XSLT and separate each string with a comma but not include a comma after the last string. In my example below I will have a trailing comma if I have Distribution node ...
10
votes
7answers
2k views

Prepending to a string

What is the most efficient way to prepend to a C string, using as little memory as possible? I am trying to reconstruct the path to a file in a large directory tree. Here's an idea of what I was ...
10
votes
2answers
4k views

Creating C macro with ## and __LINE__ (token concatenation with positioning macro)

I want to create a C macro that creates a function with a name based on the line number. I thought I could do something like (the real function would have statements within the braces): #define ...
10
votes
4answers
1k views

How can Path.Combine be used with more than 2 arguments?

I'm surprised there's not an overload that can take a string array. Anyway, what is the best way to avoid nesting calls to Path.Combine? pathValue = Path.Combine(path1, Path.Combine(path2, ...
10
votes
4answers
4k views

How can I combine multiple rows into a comma-delimited list in SQL Server 2005?

Right now, I have a SQL Query like this one: SELECT X, Y FROM POINTS It returns results like so: X Y ---------- 12 3 15 2 18 12 20 29 I'd like to return results all in one row, like ...
9
votes
2answers
731 views

Scala list concatenation, ::: vs ++

Is there any difference between ::: and ++ if I'm concatenating two lists? scala> List(1,2,3) ++ List(4,5) res13: List[Int] = List(1, 2, 3, 4, 5) scala> List(1,2,3) ::: List(4,5) res14: ...
9
votes
8answers
753 views

PHP - concatenate or directly insert variables in string

I am wondering, What is the proper way for inserting PHP variables into a string? This way: echo "Welcome ".$name."!" Or this way: echo "Welcome $name!" Both of these methods work in my PHP ...
9
votes
3answers
3k views

String concatenation does not work in SQLite

I am trying to execute a SQlite replace function, but use another field in the function. select locationname + '<p>' from location; In this snip, the result is a list of 0s. I would have ...
9
votes
2answers
180 views

Combining registers in vim

Is it possible to combine registers in vim? For example, if I have registers "a, "b, "c, can I easily create register "d which is a concatenation of all three? That is, without pasting them all and ...
9
votes
10answers
16k views

Concat all column values in sql

How to concat all column values from differenct rows returned from a sql query into one value? This is an example: a query returns: FOO ------ RES1 RES2 RES3 now I want to have a result like ...
9
votes
5answers
2k views

Is it better to use ob_get_contents() or $text .= 'test';

I have seen a lot of ob_get_clean() the last while. Typically I have done $test .= 'test' I'm wondering if one is faster and/or better than the other. Here is the code using ob_get_clean(): ...
8
votes
4answers
421 views

Concatenate lists in constant time in scala?

In Scala, is there a built-in function or external library for concatenating two lists (or arrays, or vectors, or listbuffers, etc) in constant time? Such an operation would presumably destroy / ...
8
votes
3answers
2k views

How do I concatenate 2 strings in NSIS

How do I concatenate 2 strings in NSIS?
8
votes
5answers
543 views

Method to concatenate 2 Strings in Java

I have a method in Java that concatenates 2 Strings. It currently works correctly, but I think it can be written better. public static String concat(String str1, String str2) { String rVal = null; ...
8
votes
6answers
852 views

Most Pythonic way to concatenate strings

Given this harmless little list: >>> lst = ['o','s','s','a','m','a'] My goal is to pythonically concatenate the little devils using one of the following ways: A. plain ol' string function ...
8
votes
3answers
18k views

How do you concatenate Lists in C#?

If I have: List<string> myList1; List<string> myList2; int placeToCheckValues = 0; //Used for breakpoints since the values don't get updated until after the line is executed myList1 = ...
8
votes
15answers
1k views

How can you concatenate two huge files with very little spare disk space?

Suppose that you have two huge files (several GB) that you want to concatenate together, but that you have very little spare disk space (let's say a couple hundred MB). That is, given file1 and ...
7
votes
5answers
151 views

C++ Fail without Operator Definition

I'm currently porting a C++ application to a slightly restricted environment. The application uses the STL, string and stream classes. I'm rewriting simplified versions of these that will play nicely ...
7
votes
5answers
621 views

Concatenating null strings in Java

Why does the following work? I would expect a NullPointerException to be thrown. String s = null; s = s + "hello"; System.out.println(s); // prints "nullhello"
7
votes
2answers
322 views

Why does “SELECT DISTINCT a, b FROM…” return fewer records than “SELECT DISTINCT A + '|' + B FROM…”?

I have a query that's selecting a bunch of fields related to names and addresses of customers but it boils down to: SELECT DISTINCT a, b, c, ... FROM big_dumb_flat_table it returns a bunch of ...
7
votes
8answers
4k views

Can't concatenate 2 arrays in PHP

I've recently learned how to join 2 arrays using the + operator in PHP. But consider this code... $array = array('Item 1'); $array += array('Item 2'); var_dump($array); Output is array(1) { ...
7
votes
7answers
2k views

Coalesce vs empty string concatenation

My coworker is new to C# and didn't know about the coalesce operator. So, I saw him write a line of code like this: string foo = "" + str; The idea being that if str is null, this expression would ...
6
votes
4answers
129 views

How to “Implode” (de-normalize/concat) multiple columns into a single column?

I have a query which outputs something like this: +-------+----+--------------+ | F_KEY | EV | OTHER_COLUMN | +-------+----+--------------+ | 100 | 1 | ... | | 100 | 2 | ... | ...
6
votes
2answers
151 views

bash: how do I concatenate the output of two commands so that I can pipe them to a third?

$ hg status and $ hg status --ignored give very similar outputs. I'd like to concatenate them so I can feed them to awk, as if there were an hg status --all (or svn's svn status --no-ignore) ...
6
votes
3answers
222 views

Is any way to add 2 arrays into one?

Is there any simple univesal way to add 2 arrays into one? In the case below it is not possible simply use C := A + B statement... I would like to avoid making algorhytm for it everytime . TPerson = ...
6
votes
4answers
143 views

How to do a LIKE considering two columns?

I have a customer table with two columns first_name and last_name. How can I use LIKE in a query being able to get data from both columns at same tame? For instance: SELECT CONCAT(first_name, ' ', ...

1 2 3 4 5 14