3

在没有深入了解实际程序的细节的情况下,我想获取一个现有的字符串并向其添加更多字符(或字符串)。如果这是在java中完成的,它会是这样的

字符串 x=“你好”

x= x + "世界";

我目前有我的字符串试图这样做。我声明的字符串被称为_whatiscorrect,它现在是一个空字符串,在这个例子中,我想获取现有的字符串并添加一个“o”。

_whatiscorrect = [_whatiscorrect stringByAppendingString:@"o"]; // 在字符串中放置一个 o

我该怎么做呢?

4

1 回答 1

2

你有正确的想法。只需这样做:

NSMutableString * _whatiscorrect = [[NSMutableString alloc] initWithString: @".."];
[_whatiscorrect appendString:@"o"];
于 2012-10-04T19:32:32.017 回答