In article <[EMAIL PROTECTED]>, Charles K. Clarkson
wrote:

> Kevin Pfeiffer <[EMAIL PROTECTED]> wrote:
> 
> : Where I am stuck is on the question:
> : 
> : Given an @array such as
> : ("Title of Song", "Artist", "Title", "Another Artist", "etc"),
> : is there an easy way to strip out the quotation marks.
> 
>     s/"//g foreach @array;

Ahhh, that's so nice. I should have known better and just tried that. I'm
guessing that in such a format internal quote marks would have to be
escaped? So I could do:

s/[^\]"//g...   ?

Thanks!

-- 
Kevin Pfeiffer


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

Reply via email to