在Swift中将Unicode符号或其XMLHTML实体转换为其Unicode数字

在Swift中将Unicode符号或其XMLHTML实体转换为其Unicode数字,第1张

在Swift中将Unicode符号或其XML / HTML实体转换为其Unicode数字

更新: Xpre 9•Swift 4

extension String {    var html2AttributedString: NSAttributedString? {        do { return try NSAttributedString(data: Data(utf8), options: [.documentType: NSAttributedString.documentType.html, .characterEncoding: String.Encoding.utf8.rawValue], documentAttributes: nil)        } catch { print(error) return nil        }    }    var unipres: [UInt32] { return unipreScalars.map{Xpre 8•Swift 3.value} }}

extension String {    var html2AttributedString: NSAttributedString? {        do { return try NSAttributedString(data: Data(utf8), options: [NSdocumentTypedocumentAttribute: NSHTMLTextdocumentType, NSCharacterEncodingdocumentAttribute: String.Encoding.utf8.rawValue], documentAttributes: nil)        } catch { print(error) return nil        }    }    var unipres: [UInt32] { return unipreScalars.map{
let str = "<span>&euro;€</span>".html2AttributedString?.string ?? ""print(str.unipres)     // [8364, 8364]
.value} }}




欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4926583.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存