Created
April 11, 2017 08:47
-
-
Save nazrdogan/b693e96432bdad16871275b12339aba5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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