Remove newline character from first line of NSString - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T10:19:25Z http://stackoverflow.com/feeds/question/1005281 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1005281/remove-newline-character-from-first-line-of-nsstring 4 Remove newline character from first line of NSString Brock Woolf 2009-06-17T05:39:10Z 2009-09-05T13:58:17Z <p>How can I remove the first <strong>\n</strong> character from an NSString?</p> <p>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.</p> <p>ie: If the string is like this:</p> <pre><code>@"\nhello, this is the first line\nthis is the second line" </code></pre> <p>and opposed to a string that does not contain a newline in the first line:</p> <pre><code>@"hello, this is the first line\nthis is the second line." </code></pre> <p>I hope that makes it more clear.</p> http://stackoverflow.com/questions/1005281/remove-newline-character-from-first-line-of-nsstring/1005319#1005319 5 Answer by monowerker for Remove newline character from first line of NSString monowerker 2009-06-17T05:51:22Z 2009-06-17T21:31:21Z <pre><code>[string stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]] </code></pre> <p>will trim your string from any kind of newlines, if that's what you want.</p> <pre><code>[string stringByReplacingOccurrencesOfString:@"\n" withString:@"" options:0 range:NSMakeRange(0, 1)] </code></pre> <p>will do exactly what you ask and remove newline if it's the first character in the string</p> http://stackoverflow.com/questions/1005281/remove-newline-character-from-first-line-of-nsstring/1005322#1005322 3 Answer by e.James for Remove newline character from first line of NSString e.James 2009-06-17T05:51:49Z 2009-06-17T05:51:49Z <p>This should do the trick:</p> <pre><code>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]; } </code></pre> http://stackoverflow.com/questions/1005281/remove-newline-character-from-first-line-of-nsstring/1009912#1009912 3 Answer by Quinn Taylor for Remove newline character from first line of NSString Quinn Taylor 2009-06-17T22:52:07Z 2009-09-05T13:58:17Z <p>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+)</p> <pre><code>NSRange foundRange = [original rangeOfString:@"\n"]; if (foundRange.location != NSNotFound) [original stringByReplacingOccurrencesOfString:@"\n" withString:@"" options:0 range:foundRange]; </code></pre> <p>(See <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/stringByReplacingOccurrencesOfString%3AwithString%3Aoptions%3Arange%3A" rel="nofollow"><code>-stringByReplacingOccurrencesOfString:withString:options:range:</code></a> for details.)</p> <p>The result of the last call method call can even be safely assigned back to original <strong>IF</strong> you autorelease what's there first so you don't leak the memory.</p>