Can I use JSONPath expressions to get a string out of an array of string?
Example, here is an array of strings:
{
"objects": [
"a",
"b",
"c"
]
}
and the expresion
$.objects[:]
will result into
[
"a",
"b",
"c"
]
however I want to have something like
[
"a b c"
]
or better
[
"a, b, c"
]
is this possible?