Hello everyone,
I am having some trouble getting replaceAll(); to work. I am trying to apply it to a String array that has 4 rows and writing the portion of the code as follows
for(int i = 0; i < 4; i++){
lines[i].replaceAll("this", "that");
}
For one reason or another "this" is NOT being replaced even once by "that" ..
I have everything I know how. Can anyone help ?
greatly appreciated,
Colin