Is there any way I can parse this JSON array -
I've noticed someone wrote JSON parser for pascal script here -https://github.com/koldev/JsonParser. Also after parsing, how do I use it to read an array value? Let's say I want to find the value for PrivacyPolicyUrl
in this array?
{
"Offers": [
{
"DownloadUrl": "http://dehosting.dmccint.com/FeedStub/1.4.0.5.150107.02/stub.exe",
"OfferCMD": "OfferID=553565;;;DownloadUrl=http://files.brothersoft.com/yahoo-widgets/photos/Popup-Picture.widget;;;CMD=;;;SuccessCode=0;;;SessionId=07202d21-355a-4e52-affe-1cf255219ebc;;;PublisherID=123;;;GId=N.A;;;",
"SuccessCodes": "0",
"PrivacyPolicyUrl": null,
"TermsOfUseUrl": null,
"RegCheck": [],
"OfferID": 553565,
"OfferType": 1,
"Title": "Program1",
"Description": "A Program used for monitoring purpose",
"ImageUrl": "http://cmsstorage.dmccint.com/img/offers/bs_general_images.jpg",
"RevRate": 0
}
]
}