Am I missing something, or does StringBuilder lack the same "replace all occurences of a string A with string B" function that the normal String class does? The StringBuilder replace function isn't quite the same. Is there any way to this more efficiently without generating multiple Strings using the normal String class?
|
Well, you can write a loop:
Note that in some cases it may be faster to use |
||||
|
You could use Pattern/Matcher. From the Matcher javadocs:
|
|||
|
|
|
java.util.regex.Pattern.matcher(CharSequence s) can use a StringBuilder as an argument so you can find and replace each occurence of your pattern using start() and end() without calling builder.toString() |
|||
|
|
|
Look at JavaDoc of replaceAll method of String class:
As you can see you can use Pattern and Matcher to do that. |
|||
|
|
String.replaceAllthe thing with regexs? I wouldn't worry about the overhead of converting betweenStringBuilderandString. – Tom Hawtin - tackline Aug 12 '10 at 23:33