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.
私str = [str stringByReplacingOccurrencesOfString:@"Ô" withString:@"ü"];はあなたがやろうとしていることだと信じています。
str = [str stringByReplacingOccurrencesOfString:@"Ô" withString:@"ü"];
stringByReplacingOccurrencesOfString:withString:呼び出している文字列は変更されませんが、文字が置換された新しい文字列が返されます。
stringByReplacingOccurrencesOfString:withString: