--- Stuart Clark <[EMAIL PROTECTED]> wrote:
> How do I replace the letter M with 20 spaces.
>  
> s/M/\s[20]/; # dosen't seem to work :-(

Hey, how come few seem to have noticed... \s is a CHARACTER
CLASS.  This means it represents a group of characters, so
asking for twenty of these on the replacement side is a
little weird.  Strictly speaking, you wouldn't be able to
complain if it gave you 11 spaces and 9 tabs, would you?

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