in reply to Re: Re: Parsing, tokens and strings
in thread Parsing, tokens and strings

Heh, I thought the quotes being left in the @array was a "feature", so I:
foreach (@array) { s/"//g; s/'//g; }
Thanks all for your help,

JP Hindin,

-- Alexander Widdlemouse undid his bellybutton and his bum dropped off --

Replies are listed 'Best First'.
Re: Re: Re: Re: Parsing, tokens and strings
by merlyn (Sage) on Oct 18, 2001 at 11:48 UTC
Re: Re: Re: Re: Parsing, tokens and strings
by blakem (Monsignor) on Oct 17, 2001 at 23:28 UTC
    somewhat silly to belabor the point, but why not just:
    tr/'"//d for @array;

    -Blake