Pregunta

I am using Sciptella to parse a document and make a csv file. I want the delimiter in csv to be tab. Presently I'm able to change the delimiter to any other printable single character e.g. ; as

<connection id="out" driver="csv" url="hello.csv"> separator=; </connection>

Please help me find out how to give a non printable character as a csv file's separator Thanks in Advance

¿Fue útil?

Solución

The answer was very simple just didnt know it may also work:

<connection id="out" driver="csv" url="hello.csv"> separator=\t </connection>

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top