Objective-C Language
NSRegularExpression
サーチ…
構文
- NSRegularExpression * regex = [NSRegularExpression regularExpressionWithPattern:PATTERNオプション:OPTIONSエラー:ERROR];
- NSArray <NSTextCheckingResult *> * results = [正規表現matchesInString:STRINGオプション:OPTIONS範囲:RANGE_IN_STRING];
- NSInteger numberOfMatches = [正規表現numberOfMatchesInString:STRINGオプション:OPTIONS範囲:RANGE_IN_STRING];
文字列内のすべての数字を見つける
NSString *testString = @"There are 42 sheep and 8672 cows.";
NSError *error = nil;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"(\\d+)"
options:NSRegularExpressionCaseInsensitive
error:&error];
NSArray *matches = [regex matchesInString:testString
options:0
range:NSMakeRange(0, testString.length)];
for (NSTextCheckingResult *matchResult in matches) {
NSString* match = [testString substringWithRange:matchResult.range];
NSLog(@"match: %@", match);
}
出力はmatch: 42
とmatch: 8672
ます。
文字列がパターンに一致するかどうかを確認する
NSString *testString1 = @"(555) 123-5678";
NSString *testString2 = @"not a phone number";
NSError *error = nil;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"^\\(\\d{3}\\) \\d{3}\\-\\d{4}$"
options:NSRegularExpressionCaseInsensitive error:&error];
NSInteger result1 = [regex numberOfMatchesInString:testString1 options:0 range:NSMakeRange(0, testString1.length)];
NSInteger result2 = [regex numberOfMatchesInString:testString2 options:0 range:NSMakeRange(0, testString2.length)];
NSLog(@"Is string 1 a phone number? %@", result1 > 0 ? @"YES" : @"NO");
NSLog(@"Is string 2 a phone number? %@", result2 > 0 ? @"YES" : @"NO");
出力には、最初の文字列は電話番号で、2番目の文字列は電話番号ではないことが示されます。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow