vote up 1 vote down star

If I have an NSString with a text file in it, how do I get an NSArray of NSString with each NSString containing a line of the file.

In 10.5 I did this:

NSArray* lines = [str componentsSeparatedByCharactersInSet: [NSCharacterSet newlineCharacterSet]];

But that doesn't work in 10.4, and my program needs to work in 10.4.

As well, it needs to work with \r, \n and \r\n line endings.

flag

4 Answers

vote up 3 vote down check

The following code is straight from Apple's documentation regarding paragraphs and line breaks:

unsigned length = [string length];
unsigned paraStart = 0, paraEnd = 0, contentsEnd = 0;
NSMutableArray *array = [NSMutableArray array];
NSRange currentRange;
while (paraEnd < length)
{
    [string getParagraphStart:¶Start end:¶End
    contentsEnd:&contentsEnd forRange:NSMakeRange(paraEnd, 0)];
    currentRange = NSMakeRange(paraStart, contentsEnd - paraStart);
    [array addObject:[string substringWithRange:currentRange]];
}

I'm not 100% sure if it will work with 10.4.

link|flag
I compiles without warnings when the target is set to 10.4 and it works well. Thanks. – FigBug Dec 5 '08 at 2:15
vote up 3 vote down

I'll first replace all "\r" with "\n", then replace all "\n\n" with "\n", and then do a componentsSeparatedByString:@"\n".

link|flag
Not the most efficient solution, but +1 for being clever about it – eJames Dec 5 '08 at 2:31
vote up 2 vote down

Straight from a project of mine:

NSString * fileContents = [NSString stringWithContentsOfFile:pathToFile encoding:NSUTF8StringEncoding error:nil];

NSMutableArray * fileLines = [[NSMutableArray alloc] initWithArray:[fileContents componentsSeparatedByString:@"\r\n"] copyItems: YES];

I'm not sure how to make it it automatically work with any type of line ending in 10.4.

link|flag
vote up 1 vote down

According to the NSString class reference, the NSString message componentsSeparatedByCharactersInSet: is available in OS X 10.5 or later. You need to use componentsSeparatedByString:.

link|flag
Sorry, I didn't tell you how to do it, just why your solution doesn't work in 10.4. – J. John Dec 5 '08 at 1:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.