NSString 格式问题

发布于 2024-12-05 09:39:01 字数 235 浏览 1 评论 0原文

我有类似 "Circular Quay W, The Rocks NSW, Australia" 的 NSString,我想以以下字符串格式显示:

Circular Quay W,
The Rocks NSW,
Australia

所以请帮助我开发此功能。

提前致谢。

I have NSString like "Circular Quay W, The Rocks NSW, Australia" and I want to display in following string format:

Circular Quay W,
The Rocks NSW,
Australia

so please help me to develop this functionality.

Thanks in advance.

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

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

发布评论

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

评论(3

心如荒岛 2024-12-12 09:39:01

假设您在 UILabel 中显示字符串。

NSString *str = @"Circular Quay W, The Rocks NSW, Australia";
str = [str stringByReplacingOccurrencesOfString:@", " withString:@",\n"];

不要忘记将标签的 numberOfLines 设置为 0。这使标签可以显示多行文本。

label.numberOfLines = 0;

Assuming that you are displaying the string in a UILabel.

NSString *str = @"Circular Quay W, The Rocks NSW, Australia";
str = [str stringByReplacingOccurrencesOfString:@", " withString:@",\n"];

Don't forget to set numberOfLines of the label to 0. This lets the label to show multiline text.

label.numberOfLines = 0;
北渚 2024-12-12 09:39:01

将每个逗号替换为(逗号和新行“,\n”),如果您在 UILabel 中显示它,请确保首先将高度和行数设置为 0< /strong> 使用属性 numberOfLines

 NSString *stringFoo = @"Circular Quay W, The Rocks NSW, Australia";
 stringFoo = [stringFoo stringByReplacingOccurrencesOfString: @"," withString:@",\n"];

replace each comma with (comma and new line ",\n"), if you're showing it in a UILabel make sure to set the height and the number of lines first to 0 using property numberOfLines.

 NSString *stringFoo = @"Circular Quay W, The Rocks NSW, Australia";
 stringFoo = [stringFoo stringByReplacingOccurrencesOfString: @"," withString:@",\n"];
眼泪淡了忧伤 2024-12-12 09:39:01

这应该可以完成工作:

[NSString stringWithString:@"Circular Quay W,\n The Rocks NSW,\n Australia"];

干杯

This should do the job:

[NSString stringWithString:@"Circular Quay W,\n The Rocks NSW,\n Australia"];

Cheers

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