Java Utililty Methods String Case Insert

List of utility methods to do String Case Insert

Description

The list of methods to do String Case Insert are organized into topic(s).

Method

StringinvertString(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);
...