Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vladimir-anisimov/286b9553e4eb6107cc7de17e548a38a0 to your computer and use it in GitHub Desktop.
Save vladimir-anisimov/286b9553e4eb6107cc7de17e548a38a0 to your computer and use it in GitHub Desktop.
extension String {
func matches(_ regex: String) -> Bool {
return self.range(of: regex,
options: .regularExpression,
range: nil,
locale: nil) != nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment