- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for replaceWithUnderscores (0.09 sec)
-
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) -
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)