web-dev-qa-db-fra.com

Comment convertir une chaîne en chaîne unicode (UTF-8) dans Swift?

Comment convertir une chaîne en chaîne unicode (UTF-8) dans Swift?

Dans Objective, je pourrais écrire smth comme ça:

NSString *str = [[NSString alloc] initWithUTF8String:[strToDecode cStringUsingEncoding:NSUTF8StringEncoding]];

comment faire smth similaire dans Swift?

11
Dirder

Utilisez ce code,

let str = String(UTF8String: strToDecode.cStringUsingEncoding(NSUTF8StringEncoding))

j'espère que c'est utile

8
Iyyappan Ravi

Swift 4 J'ai créé une extension String

func utf8DecodedString()-> String {
     let data = self.data(using: .utf8)
     if let message = String(data: data!, encoding: .nonLossyASCII){
            return message
      }
      return ""
}

func utf8EncodedString()-> String {
     let messageData = self.data(using: .nonLossyASCII)
     let text = String(data: messageData!, encoding: .utf8)
     return text
}
8
Gurjinder Singh

Swift 4:

let str = String(describing: strToDecode.cString(using: String.Encoding.utf8))
6
Alessandro Ornano

rapide

let esc_str = str.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed)
1
Yair Levi