Skip to content

Instantly share code, notes, and snippets.

View JackieQi's full-sized avatar

Jackie Qi JackieQi

View GitHub Profile
@JackieQi
JackieQi / Regex.swift
Last active August 31, 2017 21:46 — forked from ningsuhen/Regex.swift
Swift extension for Native String class to support Regex match and Regex replace. Credit - http://www.swift-studies.com/blog/2014/6/12/regex-matching-and-template-replacement-operators-in-swift
import Foundation
struct Regex {
var pattern: String {
didSet {
updateRegex()
}
}
var expressionOptions: NSRegularExpressionOptions {
didSet {

Videos