List of utility methods to do ASCII to String
String | asciiTrimR(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; ... |