I'm trying to do a conversion of a PDF to text with ghostscript with this command : -dBATCH -dNOPAUSE -sDEVICE=txtwrite -sOutputFile=bla.txt c:\temp\example.pdf
My problem is with the seperation of the fields/columns. Some of my fields get seperated without any space or tab inbetween, for example three columns "CAT", "DOG", "12345" will ouput as CATDOG12345.
Is there any way I can specify a delimiter to be used, so my text would come out "CAT|DOG|12345"?
Thanks in advance