0

私はこのような文字列を持っています:

NSString *test = @"This is a test string";

「テスト」という単語をスペースに置き換えて、次のようにしたい:

「これは弦です」

どうすればそのようなことができますか?

私はこの機能を使用しようとしました

test = [test stringByReplacingOccurrencesOfString:@"test" withString:@"    "];

そしてうまくいきませんでした。

4

3 に答える 3

0
NSString *test = @"This is a test string";
test = [test stringByReplacingOccurrencesOfString:@" test" withString:@""];
NSLog(@"%@",test);

それはうまくいくはずです、それが役立つことを願っています。ハッピーコーディング:)

于 2012-05-14T12:37:44.103 に答える
0
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.
于 2012-05-14T12:36:14.460 に答える
0

NSString の代わりに NSMutableString を使用してください。

于 2012-05-14T12:41:29.920 に答える