Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for replaceWithUnderscores (0.14 sec)

  1. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            assertEquals("_", ldapManager.replaceWithUnderscores("/"));
            assertEquals("_", ldapManager.replaceWithUnderscores("\\"));
            assertEquals("_", ldapManager.replaceWithUnderscores("["));
            assertEquals("_", ldapManager.replaceWithUnderscores("]"));
            assertEquals("_", ldapManager.replaceWithUnderscores(":"));
            assertEquals("_", ldapManager.replaceWithUnderscores(";"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                return replaceWithUnderscores(value);
            }
            return value;
        }
    
        /**
         * Replaces special characters in a string with underscores for group names.
         *
         * @param value the string to process
         * @return the string with special characters replaced by underscores
         */
        protected String replaceWithUnderscores(final String value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
Back to top