Hi -

Brain dead...

I have a file name in $_; I want to changes \s to
/s and escape spaces.

This works fine:

 s/\\/\//g;
 s/ /\\ /g;

How can I write that as one regex?

Again - how can I strip "s from the beginning AND
end of a scalar w/one reges, not these two?

 s/^"//;
 s/"$//;

Aloha => Beau.


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

Reply via email to