Skip to content

Instantly share code, notes, and snippets.

@foxicode
Last active August 10, 2020 12:09
Show Gist options
  • Select an option

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

Select an option

Save foxicode/cb5ce15dc83147edbe86366fb83166bc to your computer and use it in GitHub Desktop.
Check if String contains only digits
import Foundation
extension String {
var containsOnlyDigits: Bool {
let notDigits = NSCharacterSet.decimalDigits.inverted
return rangeOfCharacter(from: notDigits, options: String.CompareOptions.literal, range: nil) == nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment