Skip to content

Instantly share code, notes, and snippets.

@danielgomezrico
Created March 26, 2015 22:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielgomezrico/f852114508c1cfaaa849 to your computer and use it in GitHub Desktop.
Save danielgomezrico/f852114508c1cfaaa849 to your computer and use it in GitHub Desktop.
Blank string in Swift
extension String {
var isBlank: Bool {
get {
let trimmed = stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())
return trimmed.isEmpty
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment