Skip to content

Instantly share code, notes, and snippets.

@edwardean
Created August 8, 2018 07:51
Show Gist options
  • Save edwardean/404ec95f9b4a154c23c4c437ee58d6c2 to your computer and use it in GitHub Desktop.
Save edwardean/404ec95f9b4a154c23c4c437ee58d6c2 to your computer and use it in GitHub Desktop.
String移除所有空白
extension String {
func removingWhitespaces() -> String {
return components(separatedBy: .whitespaces).joined()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment