Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created July 29, 2023 13:25
Show Gist options
  • Select an option

  • Save foxicode/72bc8e9b6f39ea7d5b04af9f1b375cf3 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/72bc8e9b6f39ea7d5b04af9f1b375cf3 to your computer and use it in GitHub Desktop.
Removing empty spaces in String (Swift)
public extension String {
var trimmed: String {
trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
}
func trim() -> String {
trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment