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

  • SEARCH
  • Home
  • 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 8073323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:18:23+00:00 2026-06-05T14:18:23+00:00

How can I parse a file of this kind: {group:1}{group:2}{group:3} Usually I parse in

  • 0

How can I parse a file of this kind:

{"group":"1"}{"group":"2"}{"group":"3"}

Usually I parse in this way:

NSString *fileContent = [[NSString alloc] initWithContentsOfFile:reloadPath];  

SBJsonParser *parser = [[SBJsonParser alloc] init];

NSDictionary *data = (NSDictionary *) [parser objectWithString:fileContent error:nil];  

// getting the data from inside of "menu"  

//NSString *message = (NSString *) [data objectForKey:@"message"];
//NSString *name = (NSString *) [data objectForKey:@"name"];

NSArray *messagearray = [data objectForKey:@"message"];
NSArray *namearray    = [data objectForKey:@"name"];


NSDictionary* Dictionary = [NSDictionary dictionaryWithObjects:messagearray forKeys:namearray];

…objects of this king…

{"message":["Besth"],"name":["thgh"]}

…but in the type I want to parse, which is the key and object??

By the way I want to retrieve a list like this: 1, 2, 3, …

  • 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-06-05T14:18:24+00:00Added an answer on June 5, 2026 at 2:18 pm

    This is not valid JSON. You can validate for example at: http://jsonlint.com

    You could rewrite it as valid JSON like so:

    {
        "some_groups": [
            {
                "group": "1"
            },
            {
                "group": "2"
            },
            {
                "group": "3"
            }
        ]
    }
    

    Then you could extract the data by doing something like this:

    NSArray *groups = [data objectForKey:@"some_groups"];
    
    for (NSDictionary *group in groups) {
        NSLog(@"group number: %@", [group valueForKey:@"group"]);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that we can manually parse the htaccess group file with REMOTE_USER to
I'm trying to parse text-based file attachments (txt, doc, etc...). However, I can't seem
xml.etree.ElementTree.parse is choking on my xhtml file. I saw somewhere that lxml can handle
I want to read a xls file and then parse it. How can i
I have a file that looks kind of like this: junk stuff NAME Test
I would like to parse a self-designed file format with a FSM-like parser in
This is how to parse a config file question. Basically i have a text
I have uploaded a csv file to blobstore using blobstoreService.now how can i parse
I'm in need of some kind of library, possibly HTMLAgilityPack? that can parse a
I got a text file of this kind INFO [main] (porter.java:100) - Added record

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.