Skip to content

Instantly share code, notes, and snippets.

@taggon
Created September 21, 2016 12:02
Show Gist options
  • Save taggon/6e48c48296accb6a139a4b6839b85cc0 to your computer and use it in GitHub Desktop.
Save taggon/6e48c48296accb6a139a4b6839b85cc0 to your computer and use it in GitHub Desktop.
encodeURIComponent equivalent in Swift3
extension String {
func encodeURIComponent() -> String? {
let characterSet = NSMutableCharacterSet.urlQueryAllowed
return self.addingPercentEncoding(withAllowedCharacters: characterSet)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment