Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created October 15, 2020 18:15
Show Gist options
  • Select an option

  • Save foxicode/a48478e2761f08045a619fec68c17cb9 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/a48478e2761f08045a619fec68c17cb9 to your computer and use it in GitHub Desktop.
Conversions between Data and String in Swift
import Foundation
let str = "Just a text string"
let data = str.data(using: .utf8)!
let str2 = String(decoding: data, as: UTF8.self)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment