gpt4 book ai didi

ios - 如何在 NSString 中捕获特殊指示的**字符**并加粗中间的内容?

转载 作者:行者123 更新时间:2023-11-29 10:49:22 25 4
gpt4 key购买 nike

我无法将指定的“**”字符对之间的任何字符加粗。例如,在这个 NSString 中:

  "The Fox has ran **around** the corner."

应该读作:“狐狸已经绕过转角”

这是我的代码:

NSString *questionString = queryString;
NSMutableAttributedString *mutableAttributedString = [[NSMutableAttributedString alloc] initWithString:questionString];

NSRange range = [questionString rangeOfString:@"\\*([^**]+)\\*" options:NSRegularExpressionSearch|NSCaseInsensitiveSearch];
if (range.location != NSNotFound) {
[mutableAttributedString setAttributes:@{NSFontAttributeName:[UIFont fontWithName:AGHeavyFontName size:size]} range:range];
}

[[mutableAttributedString mutableString] replaceOccurrencesOfString:@"*" withString:@"" options:NSCaseInsensitiveSearch range:NSMakeRange(0, queryString.length)];

return mutableAttributedString;

我有问题 - 这段代码仍然会捕获带有一对“*”的字符,所以在这种情况下,

   "The fox has ran *around the corner*

在不应该的情况下,仍会读作“狐狸已经绕过转角”。

有什么想法吗?

最佳答案

也许这对你有帮助:

http://regex101.com/r/eF6pJ8

\\*{2}([^*]*)\\*{2}

关于ios - 如何在 NSString 中捕获特殊指示的**字符**并加粗中间的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21103445/

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