Created
February 25, 2012 03:45
-
-
Save sodastsai/1906102 to your computer and use it in GitHub Desktop.
NSRegularExpression
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <Foundation/Foundation.h> | |
| int main(int argc, const char * argv[]) { | |
| @autoreleasepool { | |
| NSString *original = @"a\nb"; | |
| NSLog(@"%@", original); | |
| NSMutableString *string = [NSMutableString stringWithString:original]; | |
| NSRegularExpression *re = [NSRegularExpression regularExpressionWithPattern:@"\n+" options:0 error:nil]; | |
| [re replaceMatchesInString:string options:0 range:NSMakeRange(0, [string length]) withTemplate:@""]; | |
| NSString *result = [NSString stringWithString:string]; | |
| NSLog(@"%@", result); | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment