vote up 4 vote down star
3

How can I remove the first \n character from an NSString?

Edit: Just to clarify, what I would like to do is: If the first line of the string contains a \n character, delete it else do nothing.

ie: If the string is like this:

@"\nhello, this is the first line\nthis is the second line"

and opposed to a string that does not contain a newline in the first line:

@"hello, this is the first line\nthis is the second line."

I hope that makes it more clear.

flag

Your edit actually makes the question less clear. Conceptually, "the first line of a string", if anything, would signify to me all the characters up to (and maybe including) the first newline in the string. If you mean something other than that by "first line", you may need to clarify again. – Quinn Taylor Jun 17 at 22:54
What Quinn said. By definition, the first line must contain a newline. Otherwise the string has only one line. – Chuck Jun 17 at 23:04

3 Answers

vote up 3 vote down check

This should do the trick:

NSString * ReplaceFirstNewLine(NSString * original)
{
    NSMutableString * newString = [NSMutableString stringWithString:original];

    NSRange foundRange = [original rangeOfString:@"\n"];
    if (foundRange.location != NSNotFound)
    {
        [newString replaceCharactersInRange:foundRange
                                 withString:@""];
    }

    return [[newString retain] autorelease];
}
link|flag
This has the downside of either (1) returning a mutable string or (2) requiring an immutable copy to avoid that. Use -stringByReplacingOccurrencesOfString:withString:options:range: to do this more efficiently. My answer includes details and a code sample. – Quinn Taylor Jun 27 at 19:58
vote up 5 vote down
[string stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]]

will trim your string from any kind of newlines, if that's what you want.

[string stringByReplacingOccurrencesOfString:@"\n" withString:@"" options:0 range:NSMakeRange(0, 1)]

will do exactly what you ask and remove newline if it's the first character in the string

link|flag
options:nil should be options:0 – Brock Woolf Jun 17 at 8:24
nil == NULL == 0 in C++. nil == NULL == (void *)0 in C. NSStringCompareOptions is typedef NSUInteger which is 32-bit on 32-bit platforms and 64-bit on 64 bit platforms. Integer literals in place of named constants go against my sensibilities ;) – monowerker Jun 17 at 12:08
1  
@monowerker: This isn't C++. I realise that nil is simply defined as zero. The Xcode compiler for some reason in 3.0 gives you a warning, using 0 fixes this. Weird, but that's what happens. – Brock Woolf Jun 17 at 20:11
You're right, I would cast it to (NSStringCompareOptions)nil for quick lookup of the masks and remove the warning. But 0 is never going to be wrong. – monowerker Jun 17 at 21:32
vote up 3 vote down

Rather than creating an NSMutableString and using a few retain/release calls, you can use only the original string and simplify the code by using the following instead: (requires 10.5+)

NSRange foundRange = [original rangeOfString:@"\n"];
if (foundRange.location != NSNotFound)
    [original stringByReplacingOccurrencesOfString:@"\n"
                                        withString:@""
                                           options:0 
                                             range:foundRange];

(See -stringByReplacingOccurrencesOfString:withString:options:range: for details.)

The result of the last call method call can even be safely assigned back to original IF you autorelease what's there first so you don't leak the memory.

link|flag
+1 This is much better than my solution. That particular method is only available in version 10.5 and up, but that should be most systems by now, what with 10.6 coming out soon. – eJames Jun 27 at 22:03
Excellent catch on 10.5+ for this method, I'd forgotten that. I'm lucky enough to not have to worry about Tiger support anymore. :-) – Quinn Taylor Jun 30 at 17:14

Your Answer

Get an OpenID
or

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