我是objective-c的初学者。
我有以下NSMutableString stringVal=@"[abc][test][end]";
为了删除最后一个 [] 块(例如 [end]) ,我应该使用什么最好的方法?
我有这个代码:
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"\[]" options:0 error:NULL];
NSArray *matches = [regex matchesInString:stringVal options:0 range:NSMakeRange(0, [stringVal length])];
for (NSTextCheckingResult *match in matches) {
?? what should i do here?
}