The replace
method is what you’re looking for.
For example:
String replacedString = someString.replace("HelloBrother", "Brother");
The replace
method is what you’re looking for.
For example:
String replacedString = someString.replace("HelloBrother", "Brother");