UTF-8 string encoding (Swift)

Let’s assume you have a human-friendly string and you want to make it a part of url. It’s not that hard:

[code language=”objc”]
var baseUrl : String = "http://example.com/place/"
var name : String = "GALERIA DOMINIKAŃSKA"
var encodedName = name.stringByAddingPercentEscapesUsingEncoding(NSUTF8StringEncoding)
var finalUrl = baseUrl + encodedName
// println(finalUrl)
// http://example.com/place/GALERIA%20DOMINIKA%C5%83SKA
[/code]

 

Komentarze |0|

Legenda *) Pola oznaczone gwiazdką są wymagane
**) Możesz używać tych znaczników i atrybutów HTML: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>
Kategoria: Tutorials
Tagi: , , , , ,