I am attempting to process a large pipe "|" delimited, double quote qualified text file (>700,000 records, >3,000 characters per record, and 28 fields per record). using a python script. I am encountering a problem as the csv parser is parsing fields incorrectly due to unescaped double quote characters and pipes embedded within the text of a field in the file. Since tabs are not present in the file I would like to convert it to a tab delimited file by replacing the double-quote-pipe-double-quote delimiter/qualifier character sequence ("|") with tabs (\t). This would be relatively straightforward if every field was populated but some are not. Fields that are not populated are represented by a null string so I can have anywhere from 1 to 7 pipe delimiters in sequence prefaced by a double quote.I am attempting to process a large pipe "|" del