If you've got PCRE compiled in you could use (?i) to turn on caseless matching. From the PCRE manpage:

An option change within a subpattern (see below for a description of subpatterns) affects only that part of the current pattern that follows it, so

       (a(?i)b)c

matches abc and aBc and no other strings (assuming PCRE_CASELESS is not used).

Regards,
Sebastiaan

Peter Zsigmond wrote:
Hi,

Do you guys know a way to make my url matching case-insensitive? I'm
working with a bunch of windows webservers and the requests I'm getting
are all mixed up.

Thanks,

Peter


--
To unsubscribe send an email with subject unsubscribe to [email protected].
Please contact [email protected] for questions.


--
To unsubscribe send an email with subject unsubscribe to [email protected].
Please contact [email protected] for questions.

Reply via email to