Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

134
votes
10answers
154k views

How do I concatenate strings in Objective-C?

Are there any shortcuts to (stringByAppendingString:) string concatenation in Objective-C or shortcuts for working with NSString or other objects in general? For example, I'd like to make NSString ...
41
votes
8answers
23k views

Using Linq to concatenate strings

What is the most efficient way to write the old-school: StringBuilder sb = new StringBuilder(); if (strings.Count > 0) { foreach (string s in strings) { sb.Append(s + ", "); } ...
31
votes
12answers
35k views

How to use GROUP BY to concatenate strings in SQL Server?

How do I get: id Name Value 1 A 4 1 B 8 2 C 9 to id Column 1 A:4, B:8 2 C:9
24
votes
8answers
20k views

String concatenation vs. string substitution in Python

In Python, the where and when of using string concatenation versus string substitution eludes me. As the string concatenation has seen large boosts in performance, is this (becoming more) a stylistic ...
22
votes
9answers
31k views

How to concatenate strings of a string field in a PostgreSQL 'group by' query?

I am going to answer my own question because I just found the answer, but thought it still worth posting here. I am looking for a way to concatenate the strings of a field within a group by query. So ...
19
votes
7answers
12k views

C++ equivalent of StringBuffer/StringBuilder?

Is there a C++ Standard Template Library class that provides efficient string concatenation functionality, similar to C#'s StringBuilder or Java's StringBuffer?
18
votes
7answers
19k views

String concatenation and Ruby

I am looking for a more elegant way of concatenating strings in Ruby. I have the following line: source = "#{ROOT_DIR}/" << project << "/App.config" Is there a nicer way of doing this? ...
13
votes
3answers
3k views

How to efficiently concatenate strings in Go?

In Go, string is a primitive type, it's readonly, every manipulation to it will create a new string. So, if I want to concatenate strings many times without knowing the length of the resulting ...
12
votes
8answers
655 views

How should I concatenate strings?

Are there differences between these examples? Which should I use in which case? var str1 = "abc" + dynamicString + dynamicString2; var str2 = String.Format("abc{0}{1}", dynamicString, ...
11
votes
6answers
10k views

How can I concatenate string variables in Bash?

In PHP I would add strings together like this: $foo = "Hello"; $foo .= " World"; So $foo would be "Hello World" How would I do that in Bash?
11
votes
18answers
10k views

Why to use StringBuffer in Java instead of the string concatenation operator

Someone told me it's more efficient to use StringBuffer to concatenate strings in Java than to use the + operator for Strings. What happens under the hood when you do that? What does StringBuffer do ...
10
votes
5answers
277 views

Why is there no exception when adding null to a string?

Why doesnt this throw an exception dont understand, obj is null object obj = null; Console.WriteLine("Hello World " + obj);
9
votes
6answers
437 views

StringBuilder or +=

I receive around 5 messages per second. Each of them has a string, which I concatenate to a master string that contains all the received messages string _masterText = ""; public void ...
9
votes
9answers
4k views

const char* concatenation

I need to concatenate two const chars like these: const char *one = "Hello "; const char *two = "World"; How might I go about doing that? I am passed these char*s from a third-party library with a ...
8
votes
4answers
370 views

Why is string concatenation faster than array join?

Today, I read this thread about speed of string concatenation. Surprisingly, string concatenation was the winner: http://jsperf.com/array-join-vs-string-connect ...
8
votes
8answers
669 views

C#: most readable string concatenation. best practice [closed]

Possible Duplicate: How should I concatenate strings? There are several ways to concat strings in everyday tasks when performance is not important. result = a + ":" + b result = ...
8
votes
3answers
2k views

How do I concatenate 2 strings in NSIS

How do I concatenate 2 strings in NSIS?
7
votes
5answers
612 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
6answers
8k views

Android - String concatenate - how to keep the spaces at the end and/or beginning of String?

I have to concatenate these two strings from my resource/value files: <string name="Toast_Memory_GameWon_part1">you found ALL PAIRS ! on </string> <string ...
7
votes
4answers
5k views

String.Format vs “string” + “string” or StringBuilder? [closed]

Possible Duplicates: Is String.Format as efficient as StringBuilder C# String output: format or concat? What is the performance priority and what should be the conditions to prefer each of ...
6
votes
1answer
76 views

How does the c# compiler concat strings [closed]

Possible Duplicate: Does C# optimize the concatenation of string literals? string foo = "bar1" + "bar2" + "bar3"; Does the c# compiler internally apply the string.Concat method ? Then it ...
6
votes
7answers
197 views

Why is StringBuilder slower than string concatenation?

Why is StringBuilder slower when compared to + concatenation? StringBuilder was meant to avoid extra object creation, but why does it penalize performance? static void Main(string[] args) { ...
6
votes
2answers
966 views

How do I concatenate strings in Entity Framework Query?

How do I concatenate strings in Entity Framework 4 I have a data from a column and I want to save as a string a comma separated string like "value1, value2, value3" Is there a method or an operator do ...
6
votes
2answers
1k views

Concatenate two char arrays?

If I have two char arrays like so: char one[200]; char two[200]; And I then want to make a third which concatenates these how could I do it? I have tried: char three[400]; strcpy(three, one); ...
6
votes
7answers
467 views

Performance with Perl Strings

I've been running across a lot of Perl code that breaks long strings up this way: my $string = "Hi, I am a very long and chatty string that just won't"; $string .= " quit. I'm going to keep going, ...
6
votes
3answers
180 views

Constructing big strings (e.g. for SQL commands) how smart is the C# compiler?

This may sound stupid but... When I create big SQL commands I want to keep my code readable and I do this: cmd.CommandText = "SELECT top 10 UserID, UserName " + "FROM Users " + "INNER JOIN ...
6
votes
7answers
364 views

+ operator for String in Java

I saw this question a few minutes ago, and decided to take a look in the java String class to check if there was some overloading for the + operator. I couldn't find anything, but I know I can do ...
6
votes
7answers
386 views

Why join is faster than normal concatenation

I've seen several examples from different languages that unambiguously prove that joining elements of a list(array) is times faster that just concatenating string. Unfortunately I didn't find an ...
5
votes
1answer
77 views

Android StringBuilder vs String Concatenation

I was reading this documentation page, http://developer.android.com/reference/android/util/Log.html. The section here caught my eye: Tip: Don't forget that when you make a call like ...
5
votes
3answers
125 views

Why does ostringstream strip NULL?

I have a string whose last part(suffix) needs to be changed several times and I need to generate new strings. I am trying to use ostringstream to do this as I think, using streams will be faster than ...
5
votes
3answers
446 views

c++ compile-time string concatenation using boost-mpl

I'm trying to concatenate strings at compile-time using boost-mpl but am getting errors from gcc. Here's the sample - using namespace boost; using namespace std; template<class A> struct type ...
5
votes
3answers
596 views

Making a string concatenation operator in R

I was wondering how one might go about writing a string concatenation operator in R, something like || in SAS, + in Java/C# or & in Visual Basic. The easiest way would be to create a special ...
5
votes
3answers
1k views

Why is the php string concatenation operator a dot (.)?

In PHP, the string operator dot (.) is used to concatenate strings. For example: $msg = "Hello there, " . $yourName; The dot operator always seems to confuse people (myself included) the first time ...
5
votes
5answers
2k views

vb.net ampersand vs plus for concatenating string

In VB.Net, is there any advantage to using & to concatenate strings instead of +? e.g. Dim x as String = "hello" + " there" vs. Dim x as String = "hello" & " there" Yes, I know for a lot ...
5
votes
2answers
1k views

Ternary operator and string concatenation quirk?

Hi I just want to know why this code yields (at least for me) an incorrect result. Well, probably i'm in fault here $description = 'Paper: ' . ($paperType == 'bond') ? 'Bond' : 'Other'; I was ...
5
votes
8answers
5k views

Merge two JSON objects programmatically

I have two JSON objects here, generated through the Google Search API. The URL's of these objects can be found below. ...
5
votes
8answers
3k views

String Concatenation unsafe in C#, need to use StringBuilder?

My question is this: Is string concatenation in C# safe? If string concatenation leads to unexpected errors, and replacing that string concatenation by using StringBuilder causes those errors to ...
4
votes
3answers
127 views

Is string concatenation in scala as costly as it is in Java?

In Java, it's a common best practice to do string concatenation with StringBuilder due to the poor performance of appending strings using the + operator. Is the same practice recommended for Scala or ...
4
votes
4answers
63 views

How to inteligently concat two strings so as to ignore duplicate substring

I want to concatenate user input intelligently so that It removes duplicate substring in following way. uneasy + easyly = uneasyly concat + catalyst = concatalyst Here is what I am trying to do, ...
4
votes
3answers
159 views

How do I get every combination of letters using yield return and recursion?

I have several lists of strings like so, from a possible list of several dozen: 1: { "A", "B", "C" } 2: { "1", "2", "3" } 3: { "D", "E", "F" } These three were only picked as an example, and the ...
4
votes
2answers
778 views

Python 3.2 - Concatenate and string formatting behavior not behaving as expected

I want to create a "full file name" variable from several other variables, but the string concatenation and string format operations aren't behaving the way I expect. My code is below: file_date = ...
4
votes
1answer
120 views

Any visual studio 2010 extension for auto concatenation on new line?

i have this question about visual studio 2010... in mono develop, when i have a string like this: string s = "hello, how are you"; and if i press enter key on the beginning of the "how...", the ...
4
votes
6answers
262 views

Why does + work with Strings in Java?

Java can't do operator overloading, but + works okay for String and Integer and some other classes. How is this possible? update: Why does this work? Integer i = 4; Integer p = 5; ...
4
votes
6answers
385 views

Create comma separated strings C#?

I have an object which holds many values, some of them (not all values from the object) need to be put in a csv string. My approach was this: string csvString = o.number + "," + o.id + "," + ...
4
votes
6answers
231 views

addition of strings in c#, how the compiler does it?

A = string.Concat("abc","def") B = "abc" + "def" A vs. B Lately I have been confused why many would say that definitely A does a much faster processing compared to B. But, the thing is they would ...
4
votes
1answer
251 views

When is StringBuffer/StringBuilder not implicitly used by the compiler?

I've heard that the compiler (or was it the JVM?) will automatically use a StringBuilder for some string concatenation. When is the right time to explicitly declare one? I don't need a StringBuffer ...
4
votes
3answers
362 views

ruby - simplify string multiply concatenation

s is a string, This seems very long-winded - how can i simplify this? : if x === 2 z = s elsif x === 3 z = s+s elsif x === 4 z = s+s+s elsif x === 5 z = s+s+s+s ...
4
votes
3answers
3k views

SQL Server String Concatenation with Null

I am creating a computed column across fields of which some are potentially null. The problem is that if any of those fields is null, the entire computed column will be null. I understand from the ...
4
votes
3answers
5k views

stringByAppendingFormat not working

I have an NSString and fail to apply the following statement: NSString *myString = @"some text"; [myString stringByAppendingFormat:@"some text = %d", 3]; no log or error, the string just doesn't ...
4
votes
7answers
260 views

Using string.Format for simple things?

In my early .Net programming days, I used string.Format() only for complex string concatenations, for example to compile strings as Problem with customer order 234 of date 2/2/2002 and payment id ...

1 2 3 4 5