I am looking to record multiple lines of "Take DOM" information and save it to CSV format but I'm having problems figuring out the best way to get ZennoPoster to do this.
Here is my target information:
The problem is if I use Take DOM Regex to capture "All" of FirstName, it will come out GeorgeBobMike. If I use "First" in my Take DOM, it will grab George everytime. How would I tell ZennoPoster to move to the 2nd, then 3rd, then 4th, etc match? Would somehow using counters be my solution?
I'm looking for some advice on how to best accomplish my goal of recording information into a CSV file so I can load it into MS Excel.
Here is my target information:
I would like to record this into a CSV file like this:{ FirstName : "George", LastName : "Mitchell"},
{ FirstName : "Bob", LastName : "Jones"},
{ FirstName : "Mike", LastName : "Johnson"},
It strikes me as something relatively simple but I have yet to see any tutorial videos or explanation of what I need.George,Mitchell
Bob,Jones
Mike,Johnson
The problem is if I use Take DOM Regex to capture "All" of FirstName, it will come out GeorgeBobMike. If I use "First" in my Take DOM, it will grab George everytime. How would I tell ZennoPoster to move to the 2nd, then 3rd, then 4th, etc match? Would somehow using counters be my solution?
I'm looking for some advice on how to best accomplish my goal of recording information into a CSV file so I can load it into MS Excel.