Top "Stringbuilder" questions

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

How to Reassign value of StringBuffer?

How can we re assign the value of a StringBuffer or StringBuilder Variable? StringBuffer sb=new StringBuffer("teststr"); Now i …

java string stringbuilder stringbuffer
StringWriter or StringBuilder

What is the difference between StringWriter and StringBuilder and when should I use one or the other?

.net stringbuilder stringwriter
PowerShell And StringBuilder

I am new in PowerShell but am familiar with .NET classes. I am using System.Text.StringBuilder in PowerShell script. …

.net powershell stringbuilder
When to use StringBuilder?

Possible Duplicate: String vs StringBuilder I just revisited some of the books that I used to pick up VB.NET. …

vb.net string stringbuilder
StringBuilder.ToString() throws OutOfMemoryException

I have a created a StringBuilder of length "132370292", when I try to get the string using the ToString() method it …

c# .net-2.0 tostring stringbuilder streamwriter
Append part of Java byte array to StringBuilder

How do I append a portion of byte array to a StringBuilder object under Java? I have a segment of …

java character-encoding stringbuilder multibyte-characters
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(…

c# .net formatting stringbuilder
Generate a String that matches a RegEx in Python

Possible Duplicate: Reversing a regular expression in python I think I ran into a problem that sounds easier than it …

python regex stringbuilder
StringBuilder Class OutOfMemoryException

I have written following function public void TestSB() { string str = "The quick brown fox jumps over the lazy dog."; StringBuilder …

c# out-of-memory stringbuilder
Why use StringBuilder? StringBuffer can work with multiple thread as well as one thread?

Suppose our application have only one thread. and we are using StringBuffer then what is the problem? I mean if …

java multithreading synchronization stringbuilder stringbuffer