I have a string,> "one:isone,two:istwo,three:isthree"
The goal is to convert these to fields and values, without knowing what will be in the string. Basically the following, but automagic.
| eval one="isone"
| eval two="istwo"
...
>
↧