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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:04:51+00:00 2026-05-18T12:04:51+00:00

I have a large text file (about 10 MB). In the text file there

  • 0

I have a large text file (about 10 MB). In the text file there are values like (without the empty lines between the rows, I couldn’t format it here properly):

;string1;stringValue1;

;string2;stringValue2;

;string3;stringValue3;

;string4;stringValue4;

I’m parsing all the ‘stringX’ values to an Array and the ‘stringValueX’ to another string, using a pretty ugly solution:

  words = [rawText componentsSeparatedByString:@";"];
  NSEnumerator *word = [words objectEnumerator];

  while(tmpWord = [word nextObject]) {

   if ([tmpWord isEqualToString: @""] || [tmpWord isEqualToString: @"\r\n"] || [tmpWord isEqualToString: @"\n"]) {
    //   NSLog(@"%@*** NOTHING *** ",tmpWord);

   }else { // here I add tmpWord the arrays...

I’ve tried to do this using NSScanner by following this example: http://www.macresearch.org/cocoa-scientists-part-xxvi-parsing-csv-data

But I received memory warnings and then it all crashed.

Shall I do this using NSScanner and if so, can anyone give me an example of how to do that?

Thanks!

  • 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-18T12:04:51+00:00Added an answer on May 18, 2026 at 12:04 pm

    In most cases NSScanner is better suited than componentsSeparatedByString:, especially if you are trying to preserve memory.

    Your file could be parsed by a loop like this:

    while (![scanner isAtEnd]) {
       NSString *firstPart = @"";
       NSString *secondPart = @"";
    
       [scanner scanString: @";" intoString: NULL];
       [scanner scanUpToString: @";" intoString: &firstPart];
    
       [scanner scanString: @";" intoString: NULL];
       [scanner scanUpToString: @";" intoString: &secondPart];
    
       [scanner scanString: @";" intoString: NULL];
    
       // TODO: add firstPart and secondPart to your arrays
    }
    

    You probably need to add error-checking code to this in case you get an invalid file.

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

Sidebar

Related Questions

I have a v. large text document (no file extension) that has information about
I have a large text file I need to sort in Java. The format
Is there anyway I can incorporate a pretty large text file (about 700KBs) into
I have a text file with a rather large amount of data of about
I have a large text file I am reading from and I need to
I have a rather large text file that has a bunch of missing newlines,
I have a a large text file (over 70mb) and need to count the
Okay, basically, I have a large list of phone numbers in a text file
I have a large file in my repository that is not text-mergeable and that
I have a generated HTML file which has large blocks of text with span's

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.