Hi,
I have no problem when loading the data of the following table with Excel:
1 XXXX XX\\XX XXXX XXXX 2 XXXX XXXX XXXX XXXX 3 XXXX XXXX\ XXXX XXXX 4 XXXX XXXX\ XXXX XXXX 5 XXXX XX\\XX XXXX XXXX 6 XXXX XX\\XX XXXX XXXX
|
However, after saving this table with CSVExampleSetWriter and loading the file with CSVExampleSource RM complains the line 3 (and 4): "Number of columns in line 3 was unexpected, was: 5, expected: 4". I guess it's due to the character combination ...\" in the csv-file.
Due to the very huge size of my original database file I cannot open it and replace the string \" with another combination. How can I handle this problem??
I'm using RM 4.6 on WindowsXP machine.
<operator name="Root" class="Process" expanded="yes">
<operator name="ExcelExampleSource" class="ExcelExampleSource" breakpoints="after">
<parameter key="excel_file" value="test.xls"/>
<parameter key="first_row_as_names" value="true"/>
</operator>
<operator name="CSVExampleSetWriter" class="CSVExampleSetWriter">
<parameter key="csv_file" value="test.csv"/>
</operator>
<operator name="CSVExampleSource" class="CSVExampleSource">
<parameter key="filename" value="test.csv"/>
</operator>
</operator>
Thanks for your help and Best Regards
VD