I just want to get the ASCII value of a single char string in Swift. This is how I\'m currently doing it:
var singleChar = \"a\" println(singleChar.unicodeSc
Swift 4.2
The easiest way to get ASCII values from a Swift string is below
let str = "Swift string" for ascii in str.utf8 { print(ascii) }
Output:
83 119 105 102 116 32 115 116 114 105 110 103