I have a list which looks like this:
[{name=test19}, {name=test20}]
with the format
List<Map<String, Object>>
how can I remove "name=" from each element and the "{}" and add """" so the list looks like this:
["test19", "test20"]
It requires some kind of iteration, right? I have tried the example here another thread but it doesn't work. Why it doesn't work is because it doesn't even go into the for loop (I have tried casting types etc)