Hi, It’s posible to use regex in Glide app and get my simple Json { item1, item2, item2,…not always same } to text item1, item2, ?
Use Query JSON instead with JSONata.
Would be helpful to see a real example to understand what your JSON looks like and what you expect for a result.
[
"one",
"two",
"t",
"f",
]
one, two, t, f (humanized)
You JSON seems invalid, because the square brackets [ ]
indicate an array, but you don’t have an array. Are you sure it shouldn’t be curly brackets { }
?
If it’s curly brackets then you should be able to use this in a Query JSON column.
$join($, ", ")
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.