I have a large set of tab separated and comma separated files that I'd like import into an sqlite data base using sqlite.au3 however I'm having trouble splitting the fields correctly due to separators within double quoted text. example; Field1,"Field 2", Field3 12334,"Quoted Text","city,state" Does anyone know a clean method to do string split that ignores double quoted delimiters? Would replacing quoted delimiters with a temporary string via a regular expressions replace work? I'm horrible