私はこのような文字列を持っています:
NSString *test = @"This is a test string";
「テスト」という単語をスペースに置き換えて、次のようにしたい:
「これは弦です」
どうすればそのようなことができますか?
私はこの機能を使用しようとしました
test = [test stringByReplacingOccurrencesOfString:@"test" withString:@" "];
そしてうまくいきませんでした。
私はこのような文字列を持っています:
NSString *test = @"This is a test string";
「テスト」という単語をスペースに置き換えて、次のようにしたい:
「これは弦です」
どうすればそのようなことができますか?
私はこの機能を使用しようとしました
test = [test stringByReplacingOccurrencesOfString:@"test" withString:@" "];
そしてうまくいきませんでした。
NSString *test = @"This is a test string";
test = [test stringByReplacingOccurrencesOfString:@" test" withString:@""];
NSLog(@"%@",test);
それはうまくいくはずです、それが役立つことを願っています。ハッピーコーディング:)
NSString *test = @"This is a test string";
test = [test stringByReplacingOccurrencesOfString:@"test" withString:@""];
NSLog(@"%@",test);
Use this. No need to give space. it will replace that word with empty space.
NSString の代わりに NSMutableString を使用してください。