Bernard van de Koppel said:
> Hi,
>
> How can I get all the " characters out of a csv file.
>
> Input looks like
> "bla bla";"bla bla";"bla bla"
>
> and it has to look like
> bla bla;bla bla; bla bla
>
> I tried $text=~ tr(#\"##);
> but perl keeps complaining about "Might be a runaway multi-line ;;"
starting on the line with tr.

Try to use $text=~s/"//g;

--
Scott


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to