
August 31st, 2004, 04:44 AM
|
|
Contributing User
|
|
Join Date: Aug 2004
Location: Stuttgart
Posts: 50
Time spent in forums: 29 sec
Reputation Power: 9
|
|
According to Viper_SB there is none. The only way to get the max. value ist to use a 3rd party programming language (PHP, perl, C etc...).
The LDAP search filter are defined in RFC 2254; the basic useable operators are these:
Quote:
4. String Search Filter Definition
The string representation of an LDAP search filter is defined by the
following grammar, following the ABNF notation defined in [5]. The
filter format uses a prefix notation.
filter = "(" filtercomp ")"
filtercomp = and / or / not / item
and = "&" filterlist
or = "|" filterlist
not = "!" filter
filterlist = 1*filter
item = simple / present / substring / extensible
simple = attr filtertype value
filtertype = equal / approx / greater / less
equal = "="
approx = "~="
greater = ">="
less = "<="
extensible = attr [":dn"] [":" matchingrule] ":=" value
/ [":dn"] ":" matchingrule ":=" value
present = attr "=*"
substring = attr "=" [initial] any [final]
initial = value
any = "*" *(value "*")
final = value
attr = AttributeDescription from Section 4.1.5 of [1]
matchingrule = MatchingRuleId from Section 4.1.9 of [1]
value = AttributeValue from Section 4.1.6 of [1] |
|