String orig = "I am the original string";
String result = orig.replaceAll("original", "modified");
// result is now "I am the modified string"