sS charSequenceToStringByChar(CharSequence s) { if (s == null) null; int n = s.length(); new StringBuilder buf; for i to n: buf.append(s.charAt(i)); ret str(buf); }