私はこのような文字列を持っています:
NSString* msg = @"Hello this is a new message to @[123:Dr Zoidberg] and his nippers";
-stringByReplacingMatchesInString:options:range:withTemplate:
そして、このパターンを次のように変換するために使用したいと思います。
NSString* msg = @"Hello this is a new message to Dr Zoidberg and his nippers";
これは私がこれまでに持っているものです:
NSString* msg = @"Hello this is a new message to @[123:Dr Zoidberg] and his nippers";
NSRegularExpression* regex = [NSRegularExpression regularExpressionWithPattern: @"????"
options: NSRegularExpressionCaseInsensitive
error: nil];
NSString* plainText = [regex stringByReplacingMatchesInString: msg
options: 0
range: NSMakeRange(0, [msg length])
withTemplate: @"$2"];
誰かが@"????"で私を助けることができます パターン?