@GaG Thank you for your help. Till now i found my way to manage easy csv tasks , since csv files are just text with comma for change column, and new lines for change row i can deal this on BAS by creating lists from "Read File to List" and then i can break each list item from "Parse string" with comma as separator. Then i use "Write File" for saving and i can live visualize the edited results on the csv file with a program called "Modern CSV". Thing is that on more advanced scripts i have big CSV files with a lots of rows and columns , sometimes i must to constant return to BAS the index position of partial value search terms on those files. I have found also an alternative way to manage by creating and executing a bat file with call for python for converting csv to xlsx and then i may use "module Excel" that haves all the actions im looking for, but Im wondering why BAS haves those actions only for xslx files, why not for csv also? Anyways till now im very satisfied to BAS but i might need more help in the future on this matter.
Extract parsed data to CSV file
-
Hi,
I created the template shown in Google Parse video on YT. It works as said but I don't know how to extract the data parsed to a CSV file. I can see the results in the Log console, but is that the only place I can copy the data from ?
-
@TravelGreg2 Hi,
I don't know how to extract the data parsed to a CSV file
You can use "Parse Line" action to parse csv data.
Here is the example csv_parse.xml
I can see the results in the Log console, but is that the only place I can copy the data from ?
You can output data to Log, Result tab, to any file selected by user.
http://wiki.bablosoft.com/doku.php?id=how_to_output_script_result
http://wiki.bablosoft.com/doku.php?id=how_to_let_user_to_choose_output_file_name -
Thanks a lot. That was easy. I used LOG then WRITE FILE as csv and it worked well.