Re: how to split a list in two directions?

2017-10-28 Thread hh via use-livecode
> Alex T. wrote: > Not a one-liner, but I'd be wiling to guess that > > repeat for each line L in theData >put item 2 of L into A1[item 1 of L] >put item 1 of L into A2[item 2 of L] > end repeat will > > be as quick as any other method. This is certainly a very fast and elegant method.

Re: how to split a list in two directions?

2017-10-28 Thread Jim Lambert via use-livecode
> Tiemo wrote: > > I have a delimiter separated list of two columns, first column is an ID, > second column a name. > > I need two arrays of this list, one with the first column (ID) as the key > and one with the second column (name) as the key. > > With split myArray by CR and ";"I get the

AW: how to split a list in two directions?

2017-10-27 Thread Tiemo Hollmann TB via use-livecode
Yes thanks Alex Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Alex Tweedly via use-livecode Gesendet: Freitag, 27. Oktober 2017 16:22 An: use-livecode@lists.runrev.com Cc: Alex Tweedly Betreff: Re: how

Re: how to split a list in two directions?

2017-10-27 Thread Alex Tweedly via use-livecode
Not a one-liner, but I'd be wiling to guess that   repeat for each line L in theData   put item 2 of L into A1[item 1 of L]   put item 1 of L into A2[item 2 of L]   end repeat will be as quick as any other method. -- Alex. On 27/10/2017 14:05, Tiemo Hollmann TB via use-livecode

how to split a list in two directions?

2017-10-27 Thread Tiemo Hollmann TB via use-livecode
Hello, I have a delimiter separated list of two columns, first column is an ID, second column a name. I need two arrays of this list, one with the first column (ID) as the key and one with the second column (name) as the key. With split myArray by CR and ";" I get the first column (the ID) as