Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Lange (0.16 sec)

  1. src/main/java/org/codelibs/core/lang/StringUtil.java

         * StringUtils.isAsciiPrintable("Ceki G\u00fclc\u00fc") = false
         * </pre>
         *
         * @param cs the CharSequence to check, may be null
         * @return {@code true} if every character is in the range 32 thru 126
         */
        public static boolean isAsciiPrintable(final CharSequence cs) {
            if (cs == null) {
                return false;
            }
            final int sz = cs.length();
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top