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 StringBuilder offers?
feedback
|
|
Using the Insert method with the position parameter set to 0 would be the same as preappending. This goes for C#, but I am sure Java StringBuilder has a similar method. | |||||||
feedback
|
|
Prepending a String will usually require copying everything after the insertion point back some in the backing array, so it won't be as quick as appending to the end. But you can do it like this in Java (in C# it's the same, but the method is called
| |||
|
feedback
|
|
If you require high performance with lots of prepends, you'll need to write your own version of A naive approach would be to add an offset into the backing | |||
|
feedback
|
|
If I understand you correctly, the insert method looks like it'll do what you want. Just insert the string at offset 0. | |||
|
feedback
|
|
I haven't used it but Ropes For Java Sounds intriguing. The project name is a play on words, use a Rope instead of a String for serious work. Gets around the performance penalty for prepending and other operations. Worth a look, if you're going to be doing a lot of this.
| |||
|
feedback
|
|
You could build the string in reverse and then reverse the result. You incur an O(n) cost instead of an O(n^2) worst case cost. | |||
feedback
|
|
Judging from the other comments, there's no standard quick way of doing this. Using StringBuilder's I've included some other very basic functionality such as The code has been tested quite a lot, but I can't guarantee it's free of bugs.
| |||
|
feedback
|
Edit:formated code | |||
|
feedback
|
|
Try using Insert()
| ||||
|
feedback
|
|
You could try an extension method:
| ||||
|
feedback
|