gpt4 book ai didi

ios - 用新行替换 NSString 中的

转载 作者:可可西里 更新时间:2023-11-01 06:19:01 25 4
gpt4 key购买 nike

我有一个 NSString像这样

NSString *string = @"textTextTextTextText<br>textTextTextText<br>TextTextText"

我想设置这个NSString成为我的文字UICell在字符串中找到的每个
标记上都有一个新行。我怎么能那样做?

我试过了,没有成功:

cell.textLabel.text = [[text componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]] componentsJoinedByString:@"<br>"];

最佳答案

怎么样:

string = [string stringByReplacingOccurrencesOfString: @"<br>" withString: @"\n"]

或者,如果您使用的是 Swift Strings

var string = "textTextTextTextText<br>textTextTextText<br>TextTextText"
string = Array(string).reduce("") {$0 + ($1 == "<br>" ? "\n" : $1)}

关于ios - 用新行替换 NSString 中的 <br>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12093986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com