Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The fact that the replace method returns a string object rather than replacing the contents of a given string is a little obtuse (but understandable when you know that strings are immutable in Java). I am taking a major performance hit by using a deeply nested replace in some code. Is there something I can replace it with that would make it faster?

share|improve this question
3  
heh heh replace replace – ojblass Jun 18 '09 at 5:40
1  
You use strings? are you crazy? use array of byte! – IAdapter Jun 18 '09 at 7:18

6 Answers

up vote 14 down vote accepted

This is what StringBuilder is meant for. If you're going to be doing a lot of manipulation, do it on a StringBuilder, then turn that into a String whenever you need to.

StringBuilder is described thus:

"A mutable sequence of characters. This class provides an API compatible with StringBuffer, but with no guarantee of synchronization".

It has replace (and append, insert, delete, et al) and you can use toString to morph it into a real String.

share|improve this answer
Also remember to use StringBuilder if you don't require thread safety, its generally faster and works the same. – Curtis Tasker Jul 10 '09 at 21:34

The previous posts are right, StringBuilder/StringBuffer are a solution.

But, you also have to question if it is a good idea to do the replace on big Strings in memory.

I often have String manipulations that are implemented as a stream, so instead of replacing it in the string and then sending it to an OutputStream, I do the replace at the moment that I send the String to the outputstream. That works much faster than any replace.

This works much faster if you want this replace to implement a template mechanism. Streaming is always faster since you consume less memory and if the clients is slow, you only need to generate at a slow pace - so it scales much better.

share|improve this answer
Can you provide an example? – Stanislav Palatnik Jul 24 '12 at 19:00

I agree with the above. Use StringBuffer for thread-safety and StringBuilder when working with single threads.

share|improve this answer

If you have a number of strings to replace (such as XML escape sequences), especially where the replacements are different length from the pattern, FSM lexer type algorithm seems like it might be most efficient, similar to the suggestion of processing in a stream fashion, where the output is incrementally built.

Perhaps a Matcher object could be used to do that efficiently.

share|improve this answer

Just get the char[] of the String and iterate through it. Use a temporary StringBuilder.

Look for the pattern you want to replace while iterating if you don't find the pattern, write the stuff you scanned to the StringBuilder, else write the replacement text to the StringBuilder.

share|improve this answer

All string manipulation in general are very slow. Consider to use StringBuffer, it's not exactly like the String class, but have a lot in common and it's mutable as well.

share|improve this answer
1  
In general, if you don't need your buffer to be thread-safe (i.e. you don't have multiple threads manipulating the same buffer at once), you should use StringBuilder instead of StringBuffer. – Avi Jun 18 '09 at 5:46
2  
From the StringBuffer documentation: The StringBuilder class should generally be used in preference to this one, as it supports all of the same operations but it is faster, as it performs no synchronization. – tgamblin Jun 18 '09 at 5:48
I used to work a lot of with multi-threaded environment so StringBuffer came in my mind naturally. – Artem Barger Jun 18 '09 at 5:50
Not sure why this question sparked a riot fest. – ojblass Jun 18 '09 at 5:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.