Jump to content
UBot Underground

Parsing Multiple List Items To Columns In Table


Recommended Posts

Hey Guys,

I scraped a list that ended up pulling a full address and I want to parse end one of the line items to columns in a table (see attached picture), how do I do this? I tried 'add the list to table as column', but when I save it to a CSV and then open the file, only the first line ("Amf") of the whole address was saved. Looking to have each line go to a different column (Name, Address, phone #, etc.)

Any idea? Probably an easy fix but I can't figure it out. 

 

post-27345-0-71623100-1451432396_thumb.jpg

Edited by MaximusAurelius
Link to post
Share on other sites

try

comment("Ubot command save to csv bug if data have \",\"")
set(#Text,"Video 
Training in 
en Minutes or Less","Global")
set(#Text,$replace(#Text,",",""),"Global")
set table cell(&Table,0,0,"Name")
set table cell(&Table,0,1,"Address")
set table cell(&Table,0,2,"Phone")
add list to list(%TableRow,$list from text(#Text,$new line),"Delete","Global")
add list to table as row(&Table,1,0,%TableRow)
  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...