1

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

Sanghita
  • 1,307
  • 3
  • 16
  • 28

1 Answers1

2

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

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

Sanghita
  • 1,307
  • 3
  • 16
  • 28
  • Thank you Sanghita. Just in case if anyone needs more details about escaping of special characters, please refer to [Properties class JavaDoc](http://docs.oracle.com/javase/7/docs/api/java/util/Properties.html#load(java.io.Reader)). – ejboy Feb 04 '14 at 19:06