Skip to content

Instantly share code, notes, and snippets.

@hisui
Created November 7, 2012 18:35
Show Gist options
  • Save hisui/4033461 to your computer and use it in GitHub Desktop.
Save hisui/4033461 to your computer and use it in GitHub Desktop.
Xcode4.5+iOS6 Simulator にて..
NSRegularExpression *const rx =
// 内側の「.*?」を「.*」にするとフリーズ
[[NSRegularExpression alloc] initWithPattern:@"((.*?)*?)X"
options:0
error:nil];
[rx firstMatchInString:@"1a"
options:0
range:NSMakeRange(1, 1)]; // ここで落ちる(´;ω;`)
@watilde
Copy link

watilde commented Nov 8, 2012

(´;ω;`)ウッ…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment