Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
韓国語の文字列を部分文字列に分割したい。例えば、
myString=@"어떻게"3 つの部分文字列に:@"어", @"떻", @"게"
myString=@"어떻게"
@"어", @"떻", @"게"
私がこれまでに試したことは次のとおりです。
[myString componentsSeparatedByCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@""];
しかし、成功していません。
助言がありますか?ありがとうございました