gpt4 book ai didi

swift - 在 NSMutableAttributedString 中查找子字符串的范围

转载 作者:IT王子 更新时间:2023-10-29 05:42:25 26 4
gpt4 key购买 nike

我有 AttributedString 和这样的表情符号“🤣🤣🤣 @Mervin tester 🤣🤣🤣”

现在我需要在这个属性字符串中找到 Mervin 的范围。

let attributedString = NSMutableAttributedString(string: "🤣🤣🤣 @Mervin tester 🤣🤣🤣")

let range = // range for "Mervin" in above String.

谢谢。

最佳答案

此扩展应该对您有所帮助。

extension NSAttributedString {
func rangeOf(string: String) -> Range<String.Index>? {
return self.string.range(of: string)
}
}

用法:

attributedString.rangeOf(string: "Mervin")

关于swift - 在 NSMutableAttributedString 中查找子字符串的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44819896/

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