Re: From json to array to datagrid
Posted: Thu Dec 29, 2011 5:20 am
Mark, thank you so much for your time, I really appreciate it.
Brian
Brian
Questions and answers about the LiveCode platform.
https://forums.livecode.com/
Code: Select all
on mouseUp
set the dgText of group "plan from google" to empty -- initialize
put empty into fld output -- initialize
put fld"input" into tinput -- initialize
put quote & "c" & quote & ":" into delimiter -- i.e. "c":
replace delimiter with return in tinput -- seperate input into records
put quote & "v" & quote & ":" into delimiter -- i.e. "v":
replace delimiter with tab in tinput -- seperate records into fields
put tinput into fld"output" -- lets have a look at it
end mouseUp