Remove newline character from first line of NSString - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T10:19:25Zhttp://stackoverflow.com/feeds/question/1005281http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1005281/remove-newline-character-from-first-line-of-nsstring4Remove newline character from first line of NSStringBrock Woolf2009-06-17T05:39:10Z2009-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#10053195Answer by monowerker for Remove newline character from first line of NSStringmonowerker2009-06-17T05:51:22Z2009-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#10053223Answer by e.James for Remove newline character from first line of NSStringe.James2009-06-17T05:51:49Z2009-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#10099123Answer by Quinn Taylor for Remove newline character from first line of NSStringQuinn Taylor2009-06-17T22:52:07Z2009-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>