Hello everybody, I'm a total newbie with KNIME. Within the HTTP request I have many GET parameters, but they don't come in a consistent order so I can't simply split the row into columns. What kinds of nodes do I need to get columns of GET parameters, and the values in the rows, and if the GET parameter does not exist for that particular row, then the value is null?
Sample input:
a=1&b=2&c=3
b=2&c=4&a=5&d=6
Desired output:
a | b | c | d | e |
1 | 2 | 3 | null | null |
5 | 2 | 4 | 6 | null |