in reply to How to separate with double quote and comma.
E.g.
$i = 'R50R20,Desc 4-10,R400,20,Test,Test5'; $i =~ s/\"{2}/*my_special_double_quote_marker*/g; ... normal double quote processing here ... foreach ( @cell ) { s/*my_special_double_quote_marker*/\"/g; }
|
---|