RegexKitLiteFrameWorksを使用しています。
NSString *str = [NSString stringWithString:@"Welcome"];
NSString *newStr [NSString string];
//RegexKitLite.h reference.
newStr = [str stringByReplacingOccurrencesOfRegex:<How To Expression?> withString:@"?"];
「ようこそ」を=>「W??????」に変換したい; より一般的には、、、、、、Apple
...私は秘密にしたいBanana Cake
Love
Peach
Watermelon
Apple => A????
Banana => B?????
Cake => C???
Love => L???
これらのパターンを作成します(HeadLetterのみ表示)...すべての単語はNSMutableArrayに格納されるため、アクセスします
[arr objectAtIndex:i] stringByReplacingOccurrencesOfString:<Expression> withString:@"?"];
2番目の文字をRegularExpressionと比較する方法は?