Last active
October 17, 2015 03:24
-
-
Save grosch/d3daeec1eefcf1614442 to your computer and use it in GitHub Desktop.
Implement regex in Swift, based off http://nshipster.com/swift-literal-convertible/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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