문제

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

도움이 되었습니까?

해결책

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

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top