I want to read a number of lines from a for loop and split them. After that i want to do a replace on A SINGLE array element.
my @fs = split(';', $line);
$fs[0] =~ s/\"//g;
This doesnt work however. The line
$fs[0] =~ s/\"//g;
returns a compiler error.
Is there a better way to do this?