Java Utililty Methods ASCII to String

List of utility methods to do ASCII to String

Description

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

Method

StringasciiTrimR(String str, int length)
ascii Trim R
int alen = asciiLength(str);
if (alen <= length)
    return str;
String result = "";
alen = 0;
for (int i = 0; i < length; i++) {
    char c = str.charAt(i);
    alen += c > 127 ? 2 : 1;
...