文字列の 3 番目の文字を確認する必要があります。私はNSPredicateでそれをやろうとしています。正規表現は ..3* であるべきだと思ったので、3 番目の文字 3 を含むすべての文字列が検索されます。
チェックする簡単なコード
- (IBAction)btnCheckPerformClick:(id)sender {
_chkOk.state = NO;
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF like[c] %@", _txtRegExpression.stringValue];
NSLog(@"%@", predicate);
if([predicate evaluateWithObject:_txtCheckingText.stringValue])
_chkOk.state = YES;
}
ありがとう