In message <[EMAIL PROTECTED] om>, "Lilantha Darshana" writes: >Could you tell me whether the regexp supports forward look ahead = >assertion or not? If not how could we ... >I.e. xyz should not follow any other characters.
I assume you mean that "xyz should not be followed by any other characters" >In Perl we could achieve this kind of matching using pattern like: = >(?:abc.xyz)(?!\w) That's actually a zero-width negative lookahead assertion. I don't believe regexp supports lookahead or lookbehind assertions. You'd need to use jakarta-oro for that. However, I don't understand why ^abc.xyz$ doesn't do the job for you in this case since you're asking for an exact match. Unless you really mean for it to be okay for non-word characters to follow the string. daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]