If you have an array that looks like this:
"addresses": [
{ "street": "12345 Main St", "city": "Springfield", "state": "VA" }
](With a dozen more addresses for the sake of argument) Is it possible to do something like this: concat(/addresses/street, ' ', /addresses/city, ' ', /addresses/state) With the end goal being that the concat is really run on each object within the addresses array and the result set is an array of concatenated objects? Thanks, Mike
