Hi there all, just trying to create a method to replace a old substring with a new one - i have denoted these by putting Source(source string), old(old substring string), new(new substring to replace old).
public static String replaceEach(String ftSwapSource, String oldString, String newString)public static String[][] ftSwapSource = { {"ft old", "File Transfered new" } };
the oldString should be replaced by newString ("ft old" gets replaced by "File Transdered new").
Any ideas?