Hmm, let me think out loud a little.
I think I see a pattern, so let's first change all of them to spaces. That's easy enough:
s/\t/ /g;
Obviously it was more out loud than thinking. ;) Let's change that to the better:
tr/\t/ /;
James
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]