Last active
March 21, 2024 02:51
-
-
Save gamako/94c8cb8873cabb97291b5a839ead50ca to your computer and use it in GitHub Desktop.
Convert Hexadecimal String to Array<Uint> or Data with Swift3 style.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
// "".hexData.hexString // | |
// "01".hexData.hexString // 01 | |
// "ab".hexData.hexString // ab | |
// "abff 99".hexData.hexString // abff99 | |
// "abff\n99".hexData.hexString // abff99 | |
// "abzff 99".hexData.hexString // ab | |
// "abf ff 99".hexData.hexString // ab | |
// "abf".hexData.hexString // ab | |
fileprivate func convertHex(_ s: String.UnicodeScalarView, i: String.UnicodeScalarIndex, appendTo d: [UInt8]) -> [UInt8] { | |
let skipChars = CharacterSet.whitespacesAndNewlines | |
guard i != s.endIndex else { return d } | |
let next1 = s.index(after: i) | |
if skipChars.contains(s[i]) { | |
return convertHex(s, i: next1, appendTo: d) | |
} else { | |
guard next1 != s.endIndex else { return d } | |
let next2 = s.index(after: next1) | |
let sub = String(s[i..<next2]) | |
guard let v = UInt8(sub, radix: 16) else { return d } | |
return convertHex(s, i: next2, appendTo: d + [ v ]) | |
} | |
} | |
extension String { | |
/// Convert Hexadecimal String to Array<UInt> | |
/// "0123".hex // [1, 35] | |
/// "aabbccdd 00112233".hex // 170, 187, 204, 221, 0, 17, 34, 51] | |
var hex : [UInt8] { | |
return convertHex(self.unicodeScalars, i: self.unicodeScalars.startIndex, appendTo: []) | |
} | |
/// Convert Hexadecimal String to Data | |
/// "0123".hexData /// 0123 | |
/// "aa bb cc dd 00 11 22 33".hexData /// aabbccdd 00112233 | |
var hexData : Data { | |
return Data(convertHex(self.unicodeScalars, i: self.unicodeScalars.startIndex, appendTo: [])) | |
} | |
} | |
extension Data { | |
var hexString : String { | |
return self.reduce("") { (a : String, v : UInt8) -> String in | |
return a + String(format: "%02x", v) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
remainder.count > 2 should be remainder.count >= 2
it is truncating the last character