我收到NSAttributedString
,其中包含NSTextAttachment
。我想刪除該附件,它看起來像在字符串中表示爲"\u{ef}"
。打印這種字符串的unicode標量,似乎"\u{ef}"
的unicode標量是U\0000fffc
。從字符串中刪除U 0000fffc unicode標量
我試着這樣做:
noAttachmentsText = text.replacingOccurrences(of: "\u{ef}", with: "")
沒有成功,所以我比較unicode的標量嘗試:
var scalars = Array(text.unicodeScalars)
for scalar in scalars {
// compare `scalar` to `U\0000fffc`
}
,但我不能無論是在比較成功。 我怎麼能這樣做?
的可能的複製[?我如何從斯威夫特字符串中刪除 「\ U0000fffc」(http://stackoverflow.com/questions/29973684/how-do-i-remove-u0000fffc-from-a-string-in-swift) –
@MikeAlter不適用於我 – AppsDev
@AppsDev你有答案嗎? –