Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1091627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:33:31+00:00 2026-05-16T23:33:31+00:00

I have an NSString which I need to ‘clean’ before feeding it into my

  • 0

I have an NSString which I need to ‘clean’ before feeding it into my json read however I can’t find a way of doing so.

This is my NSString:

"DUMMY({parameters:{code:"60246", language:"en", country:"en"}, result:{"...JSON...});"

Basically I need to remove everything except: {“…JSON…}

The problem is the codes etc change?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T23:33:32+00:00Added an answer on May 16, 2026 at 11:33 pm

    If the string is at least consistently built in the format you gave, you could use this:

    NSUInteger rangeStart = [string rangeOfString:@"result:"].location;
    NSUInteger lastBrace = [string rangeOfString:@"}" options:NSBackwardsSearch].location;
    NSUInteger jsonStart = rangeStart + [@"result:" length];
    NSUInteger jsonLength = lastBrace - jsonStart + 1;
    NSRange jsonRange = NSMakeRange(jsonStart, jsonLength);
    NSString *justJson = [string substringWithRange:jsonRange];
    

    Here’s a slightly more concise, but perhaps less efficient, method:

    NSUInteger rangeStart = [string rangeOfString:@"result:"].location;
    NSString *justJson = [string substringFromIndex:rangeStart + [@"range:" length]];
    NSUInteger lastBrace = [justJson rangeOfString:@"}" options:NSBackwardsSearch].location;
    justJson = [justJson substringToIndex:lastBrace+1];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an NSString which is splitted into set of characters. I need to
I can't figure out why it's not working, I have a NSString which I
I have an NSString which has escape characters etc in it. I need to
I have an object which straight forward instance variables. Some are NSString, some are
I have mainString from which i need to get the part of the string
I have a stringdate 16-MAY-2010 23:04:44 which i need to convert to gmt time
I have an NSMutableArray which holds the dates in format dd/MM/yyyy of type NSString.
i have a input tag which is non editable, but some times i need
I have a dictionary/list balance_sign_dict from which I need to retrieve 2 values based
i have a scrollview which has images added as subviews. i need to be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.