I found String.replaceAll() in Java with regular expression underlying. It works fine in short string. But in case of long string, I need a more efficient algorithm instead of String.replaceAll(). Anyone could give advice? Thanks!
|
|
If you want to do incremental replacement, you can use an explicit Here's the idiom from the documentation:
This is pretty much how The benefit of this method is that since you have full control over the replacement iteration, you don't have to store the entire output in memory at any given time as a potentially long (You can also do fancy replacements that is not supported by the current replacement syntax, e.g. Note that there is a request for enhancement for Related questions
See also
|
|||
|
|
|
You could try |
|||
|