Beispiel #1
0
 public static String replace(String source, String replace, String with) {
   Strings s = new Strings(source);
   s.replace(replace, with);
   return s.getString();
 }