I have a data file to read in for processing which is in tab delimited format. But the Read CSV activity only accept specification of delimiter in Comma or Semicolon. There’s no way for me to specify tab as the delimiter.
As we don’t have tab delimiter in “Read CSV” Activity.
Why don’t you convert your file to comma/semicolon delimiter format and try the same.,
Though its not right approach .Hope some one will come up with the better idea.
Please refer the link.
Apart from @ddpadil solution, you can read the file using File.ReadAllLines(“file.txt”) and then loop through each line and split the text in that line in an array using string.split function based on tab as delimiter.
Now each value of your array, you can assign it to datacolumn of a datarow and add that row into the datatable.
I think the easiest solution is to use the newly added Generate Data Table Activity. Just read the file as a text file and give as an input to the activity. Inside specify what type of column and row separators you need. This should return the results as a datatable.
Hi Cosmin,
The Generate Data Table Activity seems rather buggy and glitchy. Almost always reads all the columns into a single column and doesn’t recognize the column separator. Not sure if this has been raised as a bug yet
Hi @leepoo, CSVBuddy might be a good tool to use. It’s free for personal and commercial use, and can be run as an executable or as an Auto Hot Key script, which means it could easily be incorporated in your workflow.
Changing field delimiters is really easy with this tool. Here’s a screenshot:
Make sure you get the latest version - update if necessary. I recommend compiling the source or running the script from the CSVBuddy github repo.
Update: Also included here are CSVBuddy-master.zip, a replacement CSVBuddy.ahk to account for a missing lib, and the missing lib (ObjCSV.ahk). If you run CSVBuddy from the extracted folder as-is, you’ll get an error message about the missing lib ObjCSV.ahk. The edited CSVBuddy.ahk requires ObjCSV.ahk to be in the same folder as CSVBuddy.ahk. The executable downloaded from the link at the top doesn’t have this issue.
Some improvements will be implemented for the Generate Datatable Activity. It will allow you to specify a special functionality when interacting with csv strings and should improve the accuracy on this type of input.
This is a true statement. The generate data table puts everything into one column and does not recognize the column separator even when defined in the parameters.