I am running a scenario where I am needing to change the output of specific items in an array. The example here is as follows:
Data comes in like this and is put through an iterator
I am wanting the data to take the individual urls and replace them with this
<img src="https://s3.us-west-1.amazonaws.com/prod.us-west-1c.app.zuperpro/attachments/a016b489-08b1-4e6b-b954-1ec11cfc3fe3/5a707306-283f-4736-a745-3ec8a20b6c90.png\" height="340" width="340">
Each URL needs to look like this and in the end fall into a variable that would have this end look to push through to another api
“<img src="https://s3.us-west-1.amazonaws.com/prod.us-west-1c.app.zuperpro/attachments/a016b489-08b1-4e6b-b954-1ec11cfc3fe3/0f1d68ca-f54b-4cea-aeeb-c4360fcd5a20.png\” height="340" width="340">, <img src="https://s3.us-west-1.amazonaws.com/prod.us-west-1c.app.zuperpro/attachments/a016b489-08b1-4e6b-b954-1ec11cfc3fe3/0f1d68ca-f54b-4cea-aeeb-c4360fcd5a20.png\" height="340" width="340">,<img src="https://s3.us-west-1.amazonaws.com/prod.us-west-1c.app.zuperpro/attachments/a016b489-08b1-4e6b-b954-1ec11cfc3fe3/0f1d68ca-f54b-4cea-aeeb-c4360fcd5a20.png\" height="340" width="340">"
where the URLs are one variable and all hace the img tag and each url is individually seperated by a comma.