Hey Jerry,

I have a one quick solution for you.

str = "\"q4171\",\"(08/11/03 23:30:48)\",\"\"";
@array = split(/,/,$str);
foreach (@array)
{
    s/\"//g ;
}


HTH Pinku


Jerry Preston wrote:
Hi!,

I am trying to breakdown this line:

"q4171","(08/11/03 23:30:48)",""

with ( @data ) = split /[,|\"]/;#"

but I get many parts of the array that are empty.

All I want is in between the "'s.

Thanks,

Jerry



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



Reply via email to