Skip to content

Instantly share code, notes, and snippets.

@itsderek23
Created August 4, 2011 15:01
Show Gist options
  • Save itsderek23/1125365 to your computer and use it in GitHub Desktop.
Save itsderek23/1125365 to your computer and use it in GitHub Desktop.
Objective-C - Stripping New Lines
NSString *string = @"Lion says:\nRoar!\nGrowl!";
NSMutableString *mstring = [NSMutableString stringWithString:string];
NSLog(@"before: %@",mstring);
NSRange wholeShebang = NSMakeRange(0, [mstring length]);
[mstring replaceOccurrencesOfString: @"\n"
withString: @""
options: 0
range: wholeShebang];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment