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 8004971
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:04:53+00:00 2026-06-04T17:04:53+00:00

Possible Duplicate: How is the code for separation of single array into two arrays?

  • 0

Possible Duplicate:
How is the code for separation of single array into two arrays?

hi all i am getting below response into single array when i used the JSON parsing from my required URL but here i have to divide single array response into three array sets one set will have TB3257,TB3259,TB3261,TB3263,TB3257,TB3260 and second array set will have TB3258,TB3260,TB3262,TB3259,TB3258 and TB3261 and third array set will have TB3258. so how is the code for dividing single array into three array sets in iphone?

(
    "    TB3257    TB3258",
    "    TB3259    TB3260",
    "    TB3261    TB3262",
    "    TB3263    TB3259",
    "    TB3257    TB3258    TB3258",
    "    TB3260    TB3261" 
)
  • 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-04T17:04:55+00:00Added an answer on June 4, 2026 at 5:04 pm

    I just tried the following code:

    NSArray *yourArray = [NSArray arrayWithObjects:@"TB3257 TB3258", @"TB3259 TB3260", @"TB3261 TB3262", @"TB3263 TB3259", @"TB3257 TB3258 TB3258", @"TB3260 TB3261", nil];
    NSMutableArray *firstArray = [NSMutableArray array];
    NSMutableArray *secondArray = [NSMutableArray array];
    NSMutableArray *thirdArray = [NSMutableArray array];
    for (int i = 0; i < [yourArray count]; i++) {
        NSArray *tempArray = [[yourArray objectAtIndex:i]componentsSeparatedByString:@" "];
        [firstArray addObject:[tempArray objectAtIndex:0]];
        [secondArray addObject:[tempArray objectAtIndex:1]];
        if ([tempArray count] == 3) {
            [thirdArray addObject:[tempArray objectAtIndex:2]];
        }
    }
    NSLog(@"yourArray: %@\nfirst: %@\nsecond: %@\nthird: %@", yourArray, firstArray, secondArray, thirdArray);
    

    Output was:

    yourArray: (
        "TB3257 TB3258",
        "TB3259 TB3260",
        "TB3261 TB3262",
        "TB3263 TB3259",
        "TB3257 TB3258 TB3258",
        "TB3260 TB3261"
    )
    first: (
        TB3257,
        TB3259,
        TB3261,
        TB3263,
        TB3257,
        TB3260
    )
    second: (
        TB3258,
        TB3260,
        TB3262,
        TB3259,
        TB3258,
        TB3261
    )
    third: (
        TB3258
    )
    

    Hope it helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Python code to pick out all possible combinations from a list? I
Possible Duplicate: Home button listener I use below code to listener home button pressed:
Possible Duplicate: Stable way to embed open-source code into static library in iOS? I
Possible Duplicate: Simplest code for array intersection in JavaScript I am writing an app
Possible Duplicate: Source code for java array There is a Java source file for
Possible Duplicate: Building android source code I am getting the following error while building
Possible Duplicate: Protect .NET code from reverse engineering? we just develop a application with
Possible Duplicate: Graph visualization code in javascript? I have to integrate a graph with
Possible Duplicate: Pointer Arithmetic In C Code: int main() { int a[ ] ={0,1,2,3,4};
Possible Duplicate: What is the ultimate postal code and zip regex? I need Regex

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.