Imacros Csv file question

dr.pepper

Regular Member
Joined
Feb 13, 2012
Messages
275
Reaction score
99
Hi guys.
Does anyone know how to add a new line into a Csv file to be used in imacros?
I can only get the data i want to be in one long string at the moment whereas i want it to be split into multiple lines after each line break.
Just how you would use \n\r in PHP

Sent from my GT-I9100 using Tapatalk
 
wouldnt this work to write a blank line?
SET !EXTRACT NULL
SAVEAS TYPE=EXTRACT FOLDER=folder FILE=filename.csv

or to write a variable maybe..
SET !EXTRACT NULL
ADD !EXTRACT {{!variable}}
SAVEAS TYPE=EXTRACT FOLDER=folder FILE=filename.csv

havnt used it in a while so maybe not :)
 
Last edited:
I dont see how this would create a new line where i need a new line. Could you explain it a bit please?
 
i have a section in a script for making hotmails thats something like

SAVEAS TYPE=EXTRACT FOLDER=C:\ FILE=hotmails.csv

which writes the extracted data from a page ie the hotmail address and appends it to the csv file.

It writes them to the file on seperate lines.

Im guessing if you set the extract to null before hand it might write a blank line.
Cant check though my vps is not answering :(
 
Back
Top