string.encodeForLDAP()
Encodes the given string for safe output in LDAP queries.
string.encodeForLDAP( canonicalize=boolean )
Returns: String
| Argument | Description |
|---|---|
|
canonicalize
boolean,
optional
|
edit
The default value for canonicalize is false. When this parameter is not specified, canonicalization will not happen. By default, when canonicalization is performed, both mixed and multiple encodings will be allowed. To use any other combinations you should canonicalize using canonicalize method and then do encoding. |
Examples
editstr = "I ** love * lucee";
encode1 = str.encodeForLDAP();
dump(encode1);
encode2 = "I ** love * lucee".encodeForLDAP();
dump(encode2);