in reply to Re^3: Regex problem
in thread Regex problem

$value =~ s/\"//g;      # now remove double quotes

Minor point, double-quotes (and single-quotes) are not regular expression metacharacters so they don't need to be escaped.

$value =~ s/"//g;

would suffice.

Cheers,

JohnGG