Objective-C - 连接由管道分隔的字符串

发布于 2024-10-20 10:27:45 字数 321 浏览 1 评论 0原文

我想循环遍历数组字符串并将它们添加到 NSString 中:

NSMutableArray *emailsArray = [[NSMutableArray alloc] initWithObjects:@"One", @"Two", @"Three", nil];

for (id email in emailsArray {
    NSString *emails = ??; 
}

因此最终的 NSString 应该如下所示:

NSString *emails = @"One|Two|Three";

I would like to loop through an array strings and add them to an NSString in the following way:

NSMutableArray *emailsArray = [[NSMutableArray alloc] initWithObjects:@"One", @"Two", @"Three", nil];

for (id email in emailsArray {
    NSString *emails = ??; 
}

So the final NSString should be the following:

NSString *emails = @"One|Two|Three";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

债姬 2024-10-27 10:27:45

为此,请使用 [emailsArray ComponentsJoinedByString:@"|"]

示例:

NSMutableArray *emailsArray = [[NSMutableArray alloc] initWithObjects:@"One", @"Two", @"Three", nil];
NSString *emails = [emailsArray componentsJoinedByString:@"|"];

这里您将拥有 emails = @"One|Two|Three"

Use [emailsArray componentsJoinedByString:@"|"] for this.

Sample:

NSMutableArray *emailsArray = [[NSMutableArray alloc] initWithObjects:@"One", @"Two", @"Three", nil];
NSString *emails = [emailsArray componentsJoinedByString:@"|"];

Here you'll have emails = @"One|Two|Three".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文