Hello,
Well I’m not an expert with .json files. But if you use Read Text File to store it into a string, then you can use Split functions.
For example,
text.Split({""“page”":"},StringSplitOptions.None)(1).Split(Environment.NewLine(0))(0) will give you [ “1”, “2”, “3”, “4”, “5” ]
Then I guess you can replace the [, ], and " with Replace function. And if you want it to be stored into an array, then split by the comma.
For example,
text.Split({""“page”":"},StringSplitOptions.None)(1).Split(Environment.NewLine(0))(0).Replace("[","").Replace("]","").Replace("""","").Replace(" “,”").Split(","(0))
Not sure if that’s what you need but hope it helps.
Thanks.