public final class StringUtil extends Object
| Modifier and Type | Method and Description |
|---|---|
static String |
replaceString(String target,
String match,
String replace)
Method replaceString
Description: replace all occurances of substring with another
|
static ArrayList |
splitString(String valueList,
String delimiter)
Method splitString
Description: Split a delimited string into an ArrayList
Much like the perl split function
|
public static String replaceString(String target, String match, String replace)
target - - the target stringmatch - - the substring to be replacedreplace - - the replacement for matchCopyright © 2017 LSST. All rights reserved.