Hi to all!

I'm just starting Perl, since... a few hours ago...

I have a text files to analyze.   Each line looks like : "a", "bcd, efg, h", "c"

I found that $l=readline($filehandle) gives me the content of the current line.

Now, how can I explode the line. I'd like:
$val[0]="a", $val[1]="bcd, efg, h", $val[2]="c" (or equivalent).

I cannot figure out how to use split when the delimiter is the double quote.

Thanks for your help.

Jean-Louis 

Reply via email to