public static String stringEsc(String s)
{ return stringEsc(s, true, false) ; }
private static String stringEsc(String s, boolean singleLineString, boolean asciiOnly)
{
IndentedLineBuffer sb = new IndentedLineBuffer() ;
stringEsc(sb, s, singleLineString, asciiOnly) ;
return sb.toString() ;
}