Tagged Questions

Stringbuilder is a class that provides a convenient and efficient way of working with text data.

learn more… | top users | synonyms

45
votes
9answers
1k views

Am I undermining the efficiency of StringBuilder?

I've started using StringBuilder in preference to straight concatenation, but it seems like it's missing a crucial method. So, I implemented it myself, as an extension: public void Append(this ...
45
votes
12answers
8k views

Is String.Format as efficient as StringBuilder

Suppose I have a stringbuilder in C# that does this: StringBuilder sb = new StringBuilder(); string cat = "cat"; sb.Append("the ").Append(cat).(" in the hat"); string s = sb.ToString(); would that ...
41
votes
12answers
16k views

Java performance of StringBuilder in a loop

I've a performance related question regarding use of StringBuilder. In a very long loop I'm manipulating a StringBuilder and passing it to another method like this: for (loop condition) { ...
33
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 = ...
30
votes
5answers
1k views

StringBuffer is obsolete?

In the book "Effective Java", Josh Bloch says that StringBuffer is largely obsolete and should be replaced by the non-synchronized implementation 'StringBuilder' . But in my experience, ...
19
votes
4answers
9k views

How to clear/empty Java Stringbuilder

I'm using a StringBuilder in a loop and every x iterations I want to empty it and start with an empty StringBuilder, but I can't see any method similar to the .Net StringBuilder.Clear in the docs, ...
19
votes
6answers
7k views

When do you use StringBuilder.AppendLine/string.Format vs. StringBuilder.AppendFormat?

A recent question came up about using String.Format(). Part of my answer included a suggestion to use StringBuilder.AppendLine(string.Format(...)). Jon Skeet suggested this was a bad example and ...
19
votes
3answers
6k views

Is StringBuilder.Replace() more efficient than String.Replace?

If you have to use String.Replace() to replace test 50 times, you essentially have to create a new string 50 times. Does StringBuilder.Replace() do this more efficiently? E.g., should I use a ...
13
votes
10answers
6k views

C# or Java: Prepend strings with StringBuilder?

I know we can append strings using StringBuilder. Is there a way we can prepend strings (ie: Add strings infront of a string) using StringBuilder so we can keep the performance benefits that ...
13
votes
9answers
8k views

StringBuilder.Append Vs StringBuilder.AppendFormat

I was wondering about StringBuilder and I've got a question that I was hoping the community would be able to explain. Let's just forget about code readability, which of these is faster and why? ...
12
votes
7answers
4k views

String.Join vs. StringBuilder: which is faster?

In a previous question about formatting a double[][] to CSV format, Marc Gravell said that using StringBuilder would be faster than String.Join. Is this true?
10
votes
7answers
313 views

an elegant way to build the string in c#

string to build up using keyvaluepair is like this: "name1=v1&name2=v2&name3=v3" what i am doing: var sb = new StringBuilder(); foreach (var name in nameValues) { ...
10
votes
4answers
1k views

Is there any scenario where the Rope data structure is more efficient than a string builder

Related to this question, based on a comment of user Eric Lippert. Is there any scenario where the Rope data structure is more efficient than a string builder? It is some people's opinion ...
10
votes
11answers
1k views

String or StringBuilder return values?

If I am building a string using a StringBuilder object in a method, would it make sense to: Return the StringBuilder object, and let the calling code call ToString()? return sb; OR Return the ...
9
votes
7answers
6k views

Remove last character of a StringBuilder?

When you have to loop through a collection and make a string of each data separated by a delimiter, you always end up with an extra delimiter at the end, e.g. for(String serverId : serverIds) { ...
9
votes
6answers
438 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
8answers
4k views

Difference between string and StringBuilder in c#

I'd like to know the difference between string and StringBuilder and also need some examples for understanding.
9
votes
5answers
2k views

Why use TagBuilder instead of StringBuilder?

what's the difference in using tag builder and string builder to create a table in a htmlhelper class, or using the HtmlTable? aren't they generating the same thing??
9
votes
4answers
4k views

does javascript have a built in stringbuilder class?

i see a few code project solutions: but wanted to see if there was a regular implementation in javascript?
9
votes
10answers
1k views

When to use StringBuilder?

I understand the benefits of StringBuilder. But if I want to concatenate 2 strings, then I assume that it is better (faster) to do it without StringBuilder. Is this correct? At what point (number of ...
9
votes
6answers
978 views

Inverse String.Replace - Faster way of doing it?

I have a method to replace every character except those I specify. For example, ReplaceNot("test. stop; or, not", ".;/\\".ToCharArray(), '*'); would return "****.*****;***,****". Now, this is ...
9
votes
8answers
8k views

StringBuilder for string concatenation throws OutOfMemoryException

We mostly tend to following the above best practice. Have a look at String vs StringBuilder But StringBuilder could throw OutOfMemoryException even when there is sufficient memory available. It ...
9
votes
6answers
2k views

StringBuilder: how to get the final String?

Someone told me that it's faster to concatenate strings with StringBuilder. I have changed my code but I do not see any Properties or Methods to get the final build string. How can I get the string? ...
8
votes
7answers
863 views

Why StringBuilder when there is String?

I just encountered StringBuilder for the first time and was surprised since Java already has a very powerful String class that allows appending. Why a second String class? Where can I learn more ...
8
votes
6answers
3k views

Default capacity of StringBuilder

What is the default capacity of a StringBuilder? And when should (or shouldn't) the default be used?
7
votes
3answers
516 views

Scala StringBuilder

Is there an implicit method to convert scala.collection.mutable.StringBuilder to java.lang.StringBuilder? I am using a Java library (JCommander) in which one of the methods (usage) takes a ...
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
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
134 views

Anonymous function not returning the correct string

I have the following piece of code: delegate string CD(); void MyFunction() { stringBuilder.Append((CD)delegate() { switch(whatever) { case 1 : return "A"; ...
6
votes
3answers
198 views

If String concatenation using + is implemented using StringBuilder then why are extra objects created during concatenation?

If the following code: String s = "a" + 1 + "b";// 1. Is implemented using using StringBuilder equivalent to String s = new StringBuilder().append("a").append(1).append("b"); then will extra ...
6
votes
5answers
295 views

Does StringBuilder become immutable after a call to ToString?

I distinctly remember from the early days of .NET that calling ToString on a StringBuilder used to provide the new string object (to be returned) with the internal char buffer used by StringBuilder. ...
6
votes
10answers
2k views

How to retrieve a StringBuilder Line Count?

I have a StringBuilder instance where I am doing numerous sb.AppendLine("test"); for example. How do I work out how many lines I have? I see the class has .Length but that tells me how many ...
6
votes
8answers
1k views

Is using a StringBuilder for writing XML ok?

It feels dirty. But maybe it isn't... is it ok to use a StringBuilder for writing XML? My gut instinct says "although this feels wrong, it's probably pretty darn performant because it's not loading ...
6
votes
4answers
311 views

Does a StringBuilder initialized with a string contain exactly (only) enough space for that string?

I'm wondering if this code ... StringBuilder sb = new StringBuilder("Please read the following messages."); ... initializes sb with a buffer exactly as large as the string passed to the ...
6
votes
7answers
4k views

When to use StringBuilder?

I just revisited some of the books that I used to pick up VB.NET. I am not sure I've got this in my head, understand how/what StringBuilder is. What is the guidance for using? Is it best to use it ...
6
votes
6answers
1k views

How do you inherit StringBuilder in vb.net?

I want to add my own member to the StringBuilder class, but when I go to create it IntelliSense doesn't bring it up. public class myStringBuilder() Inherits System.Text.[StringBuilder should be ...
6
votes
5answers
2k views

What is StringBuilder's RAM consumption like?

We have a few operations where we are doing a large number of large string concatenations, and have recently encountered an out of memory exception. Unfortunately, debugging the code is not an ...
5
votes
1answer
79 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
5answers
2k views

How to trim a java stringbuilder?

I have a StringBuilder object that needs to be trimmed (i.e. all whitespace chars /u0020 and below removed from either end). I can't seem to find a method in string builder that would do this. ...
5
votes
1answer
1k views

In C#, best way to check if stringbuilder contains a substring

I have an existing StringBuilder object, the code appends some values and a delimiter to it. Now I want to modify the code to add the logic that before appending the text I want to check if it really ...
5
votes
6answers
706 views

StringBuilder vs. String considering replace

When doing concatenating lots of strings, I have been recommended to do it using a StringBuilder as such: StringBuilder someString = new StringBuilder("abc"); someString.append("def"); ...
5
votes
1answer
726 views

Regex replacements inside a StringBuilder

I'm writing the contents of a text file to a StringBuilder and I then want to perform a number of find/replace actions on the text contained in the StringBuilder using regular expressions. I've run ...
5
votes
11answers
338 views

Is there a faster method then StringBuilder for a max 9-10 step string concatenation?

I have this code to concate some array elements: StringBuilder sb = new StringBuilder(); private RatedMessage joinMessage(int step, boolean isresult) { sb.delete(0, sb.length()); ...
5
votes
4answers
771 views

How to maxmise the largest contiguous block of memory in the Large Object Heap

The situation is that I am making a WCF call to a remote server which is returns an XML document as a string. Most of the time this return value is a few K, sometimes a few dozen K, very ...
5
votes
4answers
7k views

Newline character in stringbuilder

How do you append new line(\n\r) character in StringBuilder?
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 ...
5
votes
7answers
2k views

StringBuilder extension method for appending a collection in C#

In C#, I'm trying to build an extension method for StringBuilder called AppendCollection() that would let me do this: var sb1 = new StringBuilder(); var sb2 = new StringBuilder(); var people = new ...
5
votes
10answers
5k views

Is using StringBuilder Remove method more memory efficient than creating a new StringBuilder in loop?

In C# which is more memory efficient: Option #1 or Option #2? public void TestStringBuilder() { //potentially a collection with several hundred items: string[] outputStrings = new string[] { ...
4
votes
7answers
170 views

How is StringBuffer implementing append function without creating 2 objects?

It was a interview question. I was asked to implement StringBuffer append function. I saw the code after interview. But I cannot understand how the operation is done with creation of a single object. ...
4
votes
1answer
234 views

C# Stringbuilder System.OutOfMemoryException

I have written following function public void TestSB() { string str = "The quick brown fox jumps over the lazy dog."; StringBuilder sb = new StringBuilder(); int j = 0; int len = 0; try ...

1 2 3 4 5 6