public class StringReplace extends Object
| Constructor and Description |
|---|
StringReplace() |
| Modifier and Type | Method and Description |
|---|---|
static String |
replace(String source,
String match,
String replace)
This method takes a String and will replace all occurrences of the match
String with that of the replace String.
|
public StringReplace()
public static String replace(String source, String match, String replace)
source - the source stringmatch - the string used to find a matchreplace - the string used to replace match withCopyright © 2019. All rights reserved.