Hi
in an application I use string replace method to replace some substring as follow:
myString.replaceAll("k5m6m7k4m3","");
The strings are sometime very long.
My question, is the replaceAll the best way and fast enough, or is there another way to do it?
regards

