> Since the whole point of the VFS discussion appears to be to support
> users who aren't using J2SE 1.4, all you have to do is use the syntax
> subset shared by Perl5 and java.util.regex, which is rather rich and
> useful.  Anyway, that's my take given my understanding of what's being
> discussed.

Ok.
I am using \Q \E for quoting segments that should not be considered regexes.
Then I use ((?<!^)|[^/])\\Q**\\E((?!$)|[^/]) construct when looking for
illegal patterns. (this means you can only have 2 stars in a row if they
are delimited by
- start of pattern OR slash
AND
- end of pattern OR slash
Do these things work in all different regex flavors?
And if not then how can I do it otherwise?

- rami


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to