On Fri, 27 Sep 2002, Dharmender Rai wrote:

> your regexp for aBalt (aBalt*) is not correct. It is
> taking into account aBaltimore also. Instead , you
> should have written "aBalt\.* "

Your regex says the string 'aBalt' followed by 0 or more '.'.
This should be 'aBalt.*'


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

Reply via email to