Substring match (attr=initial*any*...*final) from explicit anchor parts.
attr=initial*any*...*final
Each part is carried literally, so wildcards are expressed only by which parts are present, never by metacharacters inside them. At least one part must be supplied.
The attribute description.
The substring anchors: optional initial, ordered any[], optional final.
initial
any[]
final
A substrings Filter node.
substrings
If no part is supplied.
1.0.2
substring('cn', { initial: 'a', any: ['b'], final: 'c' }); // (cn=a*b*c)substring('mail', { final: '@example.org' }); // (mail=*@example.org) Copy
substring('cn', { initial: 'a', any: ['b'], final: 'c' }); // (cn=a*b*c)substring('mail', { final: '@example.org' }); // (mail=*@example.org)
Substring match (
attr=initial*any*...*final) from explicit anchor parts.Each part is carried literally, so wildcards are expressed only by which parts are present, never by metacharacters inside them. At least one part must be supplied.