Skip to content

Instantly share code, notes, and snippets.

@grosch
Last active October 17, 2015 03:24
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save grosch/d3daeec1eefcf1614442 to your computer and use it in GitHub Desktop.
Implement regex in Swift, based off http://nshipster.com/swift-literal-convertible/
import Foundation
public protocol GSRegularExpressionMatchable {
func match(regex: GSRegex) -> Bool
func match(regex: NSRegularExpression) -> Bool
}
public class GSRegex: StringLiteralConvertible {
let regex: NSRegularExpression?
private class func initialize(pattern: String) -> NSRegularExpression? {
var error: NSError?
if let expression = NSRegularExpression(pattern: pattern, options: .allZeros, error: &error) {
return expression
} else {
println("HEY! Invalid regex \(pattern) passed in: \(error)")
return nil
}
}
func match(string: String) -> Bool {
if let r = regex {
let num = r.numberOfMatchesInString(string, options: .allZeros, range: NSMakeRange(0, count(string)))
return num != 0
} else {
return false
}
}
// MARK: - Conversions -
public typealias ExtendedGraphemeClusterLiteralType = ExtendedGraphemeClusterType
required public init(extendedGraphemeClusterLiteral value: ExtendedGraphemeClusterLiteralType) {
regex = GSRegex.initialize(value)
}
public typealias UnicodeScalarLiteralType = UnicodeScalarType
required public init(unicodeScalarLiteral value: UnicodeScalarLiteralType) {
regex = GSRegex.initialize(value)
}
public required init(stringLiteral value: StringLiteralType) {
regex = GSRegex.initialize(value)
}
func match(expression: NSRegularExpression) -> Bool {
return true
}
}
infix operator =~ { associativity left precedence 130 }
public func =~<T: GSRegularExpressionMatchable> (left: T, right: NSRegularExpression) -> Bool {
return left.match(right)
}
public func =~<T: GSRegularExpressionMatchable> (left: T, right: GSRegex) -> Bool {
return left.match(right)
}
extension String: GSRegularExpressionMatchable {
public func match(regex: GSRegex) -> Bool {
return regex.match(self)
}
public func match(regex: NSRegularExpression) -> Bool {
return regex.numberOfMatchesInString(self, options: .allZeros, range: NSMakeRange(0, count(self))) != 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment