如何在Swift中将十六进制数转换为bin?

时间:2014-10-09 17:13:26

标签: swift binary hex

我有字符串变量: var str =“239A23F” 如何将此字符串转换为二进制数? str.toInt()不起作用。

1 个答案:

答案 0 :(得分:25)

您可以使用Foundation框架中的NSScanner()

let scanner = NSScanner(string: str)
var result : UInt32 = 0
if scanner.scanHexInt(&result) {
    println(result) // 37331519
}

或BSD库函数strtoul()

let num = strtoul(str, nil, 16)
println(num) // 37331519

Swift 2(Xcode 7)开始,所有整数类型都有

public init?(_ text: String, radix: Int = default)

初始化程序,以便提供纯粹的Swift解决方案:

let str = "239A23F"
let num = Int(str, radix: 16)