Skip to content

Instantly share code, notes, and snippets.

@nazrdogan
Created April 11, 2017 08:47
Show Gist options
  • Save nazrdogan/b693e96432bdad16871275b12339aba5 to your computer and use it in GitHub Desktop.
Save nazrdogan/b693e96432bdad16871275b12339aba5 to your computer and use it in GitHub Desktop.
// Write some awesome Swift code, or import libraries like "Foundation",
// "Dispatch", or "Glibc"
import Foundation
extension String
{
func trim() -> String
{
return self.trimmingCharacters(in: CharacterSet.whitespaces)
}
}
var s = " Hello World! "
print(s.trim())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment