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.
などの不要な文字を削除する方法についてはよく知っていますが、 NSString{,},<,>,内の "(逆コンマ) の発生を削除する方法を見つけることができません。これに関する提案は非常に役立ちます。どうもありがとうございました。
{,},<,>,
次のようにできます。
NSString *strText = @"abcdef\"\"xyz"; [strText stringByReplacingOccurrencesOfString:@"\"" withString:@""];