Skip to content

Instantly share code, notes, and snippets.

View jschilli's full-sized avatar

Jeff Schilling jschilli

View GitHub Profile
// Playground - noun: a place where people can play
import Cocoa
struct Regex {
let pattern: String
let expressionOptions: NSRegularExpressionOptions
let matchingOptions: NSMatchingOptions
init(pattern: String, expressionOptions: NSRegularExpressionOptions, matchingOptions: NSMatchingOptions) {