I'm looking to extract a specific section of text from a cell.
The cell content looks like this;
"modified":"1595515574184000","owner_id":"xxxx","priority_id":"xxx","severity_id":"xxx","status_id":"xxxx","type_id":"xxxx","user_email":"xxx","user_id":"xxxx","verifier_id":"xxxxx"
All the content is presented in this format however, the items are not always in the same order so functions such as left(), right() & mid() will not work for me.
I've also tried using the split() function, but it produces an array of items in different columns
In the above cell I'd like to extract the 16 digits after every "modified" tag.
If anyone has any suggestions or feedback let me know!
Thanks

