Using Perl (sorry: obfuscating code)
perl -pe 's/".*?"/ $& =~ tr[|][]dr /ge' file
Explanation:
perl -pe proc- apply procprocto all the liness/RE/ f($&) /ge- substitutes REREby the result off(matching string)tr[|][]dr- translates|by nothing (=deletes)