Hi, I have a very specific problem. I have a field with following values at different timestamps. Example: 1,3,20 0 2,3,43,9,12 3,3,40,8,20,9,80 2,3,20,9,30 6,2,0,3,30,4,42,5,29,6,80,9,92 This field actually represents very specific information, which I need to extract to feed my calculation. The first number shows us how many fields are there to be extracted. The second (and every other even number) is the name of the field to be extracted. The third (and every other odd number) is the value of the field, whose name is stated just before. That means that the last example I stated means that: There are six (6) fields to be extracted The key:value pairs are: 2:0 3:30 4:42 5:29 6:80 9:92 I want to be able to extract these fields, assigning them the approriate name. Is there a command / function that handles this well? Thanks in advance!
... View more