let\'s say I have this string array in java
String[] test = {"hahaha lol", "jeng jeng jeng", &quo
Straight out of the Java docs... String java docs
You can do String.replace('toreplace','replacement').
Iterate through each member of the array with a for loop.