I want to remove first and last bracket from my NSString.
{
    "Questions" : [
        {
          "title" : "This is my Question",
          "question_id" : "123123123213",
          "answers" : [
            "correct answer 1",
            "wrong answer 1",
            "wrong answer 2",
            "wrong answer 3"
          ],
          "media_type" : "",
        },
    {
          "title" : "This is my Question",
          "question_id" : "2342342342342",
          "answers" : [
            "correct answer 1",
            "wrong answer 1",
            "wrong answer 2",
            "wrong answer 3"
          ],
          "media_type" : "",
        }
      ]
    }
I want to remove only first and last { } from the above NSString.
Make sure its not Dictionary. I have this in NSString.