我尝试使用十六进制值转换表情符号,我发现some code online要执行此操作,但它只能使用Objective C,如何使用Swift执行相同操作?
答案 0 :(得分:9)
这是一种“纯粹的Swift”方法,不使用Foundation:
let smiley = ""
let uni = smiley.unicodeScalars // Unicode scalar values of the string
let unicode = uni[uni.startIndex].value // First element as an UInt32
print(String(unicode, radix: 16, uppercase: true))
// Output: 1F60A
请注意,Swift Character
表示“Unicode字形集群”
(比较来自Swift博客的Strings in Swift 2)哪个可以
由几个“Unicode标量值”组成。举个例子
来自@ TomSawyer的评论如下:
let zero = "0️⃣"
let uni = zero.unicodeScalars // Unicode scalar values of the string
let unicodes = uni.map { $0.value }
print(unicodes.map { String($0, radix: 16, uppercase: true) } )
// Output: ["30", "FE0F", "20E3"]
答案 1 :(得分:0)
它的工作方式类似,但在您打印时要注意:
import Foundation
var smiley = ""
var data: NSData = smiley.dataUsingEncoding(NSUTF32LittleEndianStringEncoding, allowLossyConversion: false)!
var unicode:UInt32 = UInt32()
data.getBytes(&unicode)
// println(unicode) // Prints the decimal value
println(NSString(format:"%2X", unicode)) // Print the hex value of the smiley
答案 2 :(得分:0)
如果有人试图找到一种将表情符号转换为Unicode 字符串的方法
extension String {
func decode() -> String {
let data = self.data(using: .utf8)!
return String(data: data, encoding: .nonLossyASCII) ?? self
}
func encode() -> String {
let data = self.data(using: .nonLossyASCII, allowLossyConversion: true)!
return String(data: data, encoding: .utf8)!
}
}
示例:
结果:\ ud83d \ ude0d
结果: