Swift version: 5.6
If you know an instance of Data
contains a String
and you want to convert it, you should use the String(decoding:as:)
initializer, like this:
let str = String(decoding: data, as: UTF8.self)
If the Data
instance can’t be converted to a UTF-8 string, you’ll get sent back an empty string. This means you do need to know which format is used to store the string, but UTF-8 is usually the best to go with.
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.