Created
November 7, 2012 18:35
-
-
Save hisui/4033461 to your computer and use it in GitHub Desktop.
Xcode4.5+iOS6 Simulator にて..
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
NSRegularExpression *const rx = | |
// 内側の「.*?」を「.*」にするとフリーズ | |
[[NSRegularExpression alloc] initWithPattern:@"((.*?)*?)X" | |
options:0 | |
error:nil]; | |
[rx firstMatchInString:@"1a" | |
options:0 | |
range:NSMakeRange(1, 1)]; // ここで落ちる(´;ω;`) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(´;ω;`)ウッ…