I have an array like this.
[
{"Test": "1", "Recommendedby": "3,4,5,6"},
{"ABC": "2", "Recommendedby": "1,2,3"},
{"Cvb": "3", "Recommendedby": ""}
]
Now I need to get the Recommendedby column and I want to this column data means I need to send each number in recommended column data to service to get the username of that userid.
Please tell me how to achieve this.