I have a JSON code coming from AjaxRequest and I want it to split the object into a string or array in order for me to manipulate the data.
Here's my JSON Code
[{
"intAccountId": 2733,
"strAccountId": "59250-2001",
"strDescription": "SOIL TEST & GPS SERVICE-WB",
"strNote": null,
"intAccountGroupId": 6,
"dblOpeningBalance": null,
"ysnIsUsed": false,
"intConcurrencyId": 1,
"intAccountUnitId": null,
"strComments": null,
"ysnActive": true,
"ysnSystem": false,
"strCashFlow": null,
"intAccountCategoryId": 47
}]
The result will something like this.
"2733 59250-2001 SOIL TEST & GPS SERVICE-WB"
jsonobject["strAccountId"]? Building a string out of that sounds like it should be covered by your most basic understanding of whatever language (probably Javascript? If so, please add that tag to your question) you're using.