--- Wagner-David <[EMAIL PROTECTED]> wrote:
> Though s(world .. worked w/o /, it should be written
> s/(world | how )//gi;

s/\b(world|how)\b//gi;

The \b is a word boundary, which is going to work as
expected more frequently.

Jonathan Paton

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

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

Reply via email to