Skip to content

Instantly share code, notes, and snippets.

@NSMutableString
Last active November 16, 2019 17:51
Show Gist options
  • Save NSMutableString/5147c9ae60dc647f526787a73ecc5919 to your computer and use it in GitHub Desktop.
Save NSMutableString/5147c9ae60dc647f526787a73ecc5919 to your computer and use it in GitHub Desktop.
Correct URL encoding
private extension String {
var urlEscaped: String? {
return self.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment