Skip to content

Instantly share code, notes, and snippets.

@ericdke
Created January 4, 2016 10:21
Show Gist options
  • Select an option

  • Save ericdke/0d730e556ac30ccf6c46 to your computer and use it in GitHub Desktop.

Select an option

Save ericdke/0d730e556ac30ccf6c46 to your computer and use it in GitHub Desktop.
extension String {
var isNumeric: Bool {
let nums: Set<Character> = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
return Set(self.characters).isSubsetOf(nums)
}
}
"No numbers here".isNumeric // false
"123".isNumeric // true
"Hello world 123".isNumeric // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment