-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathRegex.swift
104 lines (94 loc) · 3.69 KB
/
Regex.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
//
// Regex.swift
// SwiftOrg
//
// Created by Xiaoxing Hu on 14/08/16.
// Copyright © 2016 Xiaoxing Hu. All rights reserved.
//
import Foundation
#if !os(Linux)
typealias RegularExpression = NSRegularExpression
typealias TextCheckingResult = NSTextCheckingResult
#else
extension TextCheckingResult {
func rangeAt(_ idx: Int) -> NSRange {
return range(at: idx)
}
}
#endif
var expressions = [String: RegularExpression]()
public extension String {
/// Cache regex (for performance and resource sake)
///
/// - Parameters:
/// - regex: regex pattern
/// - options: options
/// - Returns: the regex
private func getExpression(_ regex: String, options: RegularExpression.Options) -> RegularExpression {
let expression: RegularExpression
if let exists = expressions[regex] {
expression = exists
} else {
expression = try! RegularExpression(pattern: regex, options: options)
expressions[regex] = expression
}
return expression
}
private func getMatches(_ match: TextCheckingResult) -> [String?] {
var matches = [String?]()
switch match.numberOfRanges {
case 0:
return []
case let n where n > 0:
for i in 0..<n {
let r = match.rangeAt(i)
matches.append(r.length > 0 ? NSString(string: self).substring(with: r) : nil)
}
default:
return []
}
return matches
}
public func match(_ regex: String, options: RegularExpression.Options = []) -> [String?]? {
let expression = self.getExpression(regex, options: options)
if let match = expression.firstMatch(in: self, options: [], range: NSMakeRange(0, self.utf16.count)) {
return getMatches(match)
}
return nil
}
public func matchSplit(_ regex: String, options: RegularExpression.Options) -> [String] {
let expression = self.getExpression(regex, options: options)
let matches = expression.matches(in: self, options: [], range: NSMakeRange(0, self.utf16.count))
var splitted = [String]()
var cursor = 0
for m in matches {
if m.range.location > cursor {
splitted.append(self.substring(with: self.characters.index(self.startIndex, offsetBy: cursor)..<self.characters.index(self.startIndex, offsetBy: m.range.location)))
}
splitted.append(NSString(string: self).substring(with: m.range))
cursor = (m.range.toRange()?.upperBound)! + 1
}
if cursor <= self.characters.count {
splitted.append(self.substring(with: self.characters.index(self.startIndex, offsetBy: cursor)..<self.endIndex))
}
return splitted
}
public func tryMatch(_ regex: String,
options: RegularExpression.Options = [],
match: ([String?]) -> Void,
or: (String) -> Void) {
let expression = self.getExpression(regex, options: options)
let matches = expression.matches(in: self, options: [], range: NSMakeRange(0, self.utf16.count))
var cursor = 0
for m in matches {
if m.range.location > cursor {
or(self.substring(with: self.characters.index(self.startIndex, offsetBy: cursor)..<self.characters.index(self.startIndex, offsetBy: m.range.location)))
}
match(getMatches(m))
cursor = (m.range.toRange()?.upperBound)!
}
if cursor < self.characters.count {
or(self.substring(with: self.characters.index(self.startIndex, offsetBy: cursor)..<self.endIndex))
}
}
}