I wrote this
s/([A-Za-z]*)/\n$1/g;
Try this:
s/\W//g;
That looks like a capital W to me, though your explanation used the correct w. \W matches any NON-word character and thus wouldn't work here.
James
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]