Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Swift converting Byte Array into String

I can't convert this below byte array into String in swift.

let chars: [UInt8] =  [255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0]

let datastring = NSString(data: chars, encoding: NSUTF8StringEncoding)

But in android it just works fine I don't know whats wrong in swift.

like image 796
nik Avatar asked Jan 28 '26 05:01

nik


2 Answers

[UInt8] is not NSData, so you can't use the NSString(data... initializer

You might use

let chars: [UInt8] =  [255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 0, 0]
let count = chars.count / sizeof(UInt8)
let datastring = NSString(bytes: chars, length: count, encoding: NSASCIIStringEncoding)

In Swift 3 things have become much easier as a native String can be initialized with a sequence of bytes.

let datastring = String(bytes: chars, encoding: .utf8)

However the example is not meaningful because it doesn’t represent a string so datastring will be nil. Use valid data like

let chars : [UInt8] = [72, 101, 108, 108, 111]
let datastring = String(bytes: chars, encoding: .utf8) // "Hello"
like image 83
vadian Avatar answered Jan 30 '26 18:01

vadian


In Swift 3 you can use this:

import Foundation
let chars: [UInt8] =  [255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0, 0, 0, 0]
let string = String(data: Data(chars), encoding: .utf8)
like image 27
Kacper Dziubek Avatar answered Jan 30 '26 19:01

Kacper Dziubek