forward look ahead assertion

"Lilantha Darshana" <[email protected]> Thu, 6 Nov 2003 12:34:29 +0600
Newsgroups gmane.comp.jakarta.regexp.user
Message-ID <28B8E04BCFBEB74B9B19F765DE6598E94C867A@ENETSLMAILI.enetsl.Virtusa.com>
Hi 

Could you tell me whether the regexp supports forward look ahead assertion or not? If not how could we
managed to test a patter like:

abc.xyz

which I need to match exactly abc.xyz but not

abc.xyza
abc.xyzab etc...

I.e. xyz should not follow any other characters. 

In Perl we could achieve this kind of matching using pattern like: (?:abc.xyz)(?!\w)

regards
Lilantha