List of utility methods to do String Case Insert
String | invertString(String s) Reverse a given String. if ((s == null) || (s == "")) return ""; byte[] b = s.getBytes(); byte[] c = new byte[b.length]; int x = b.length; for (int i = 0; i < x; i++) c[x - i - 1] = b[i]; return new String(c); ... |