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 のアポストロフィ文字について質問があります。
Web サービスから json オブジェクトを受け取りましたが、アポストロフィ文字が ''' のように表示されます。
この文字を手動でアポストロフィに置き換える必要がありますか、それともおそらく文字列のエンコーディングを変更して、NSString を ' のように表示することができますか?
ありがとうございました。
これを試しましたか?文字列をフィルタリングしてからログに記録してみてください。
yourString = [yourString stringByReplacingOccurrencesOfString:@"'''" withString:@""];