in reply to Delete de " from my file

Commenting, or removing, use strict doesn't make errors go away, it just makes perl hide the errors from you, so don't do it.

my $data = do {local $/; <FILE>}; $data =~ s/"//g;

will remove all the quotes from the slurped text. If you want to remove just the quotes at the start and end of words, try using Text::CSV and post back if you have any problems.