Java Utililty Methods String Distance

List of utility methods to do String Distance

Description

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

Method

StringSqr(String[] X)
Sqr
String[] newstring = new String[X.length];
String pop = "";
int i;
int M = 0;
for (i = 0; i < X.length; i++) {
    if (X[i].startsWith("S")) {
        String XXX = X[i].substring(1, X[i].length());
        double result;
...