Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for whitespaceChars (0.2 sec)

  1. src/main/java/org/codelibs/core/text/Tokenizer.java

            wordChar(ctype2, '"');
            wordChar(ctype2, '~');
            wordChar(ctype2, '*');
            wordChar(ctype2, '.');
            // ordinaryChar(ctype2, '=');
            // ordinaryChar(ctype2, ',');
            whitespaceChars(ctype2, 0, ' ');
        }
    
        protected static void wordChars(final byte[] ctype2, int low, int hi) {
            if (low < 0) {
                low = 0;
            }
            if (hi >= ctype2.length) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top