-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathMatchManager.swift
61 lines (51 loc) · 2.29 KB
/
MatchManager.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
//
// MatchManager.swift
// InputKitDemo_Swift
//
// Created by tingxins on 08/06/2017.
// Copyright © 2017 tingxins. All rights reserved.
//
import Foundation
internal class MatchManager {
class func matchLimitedTextTypePrice(component:AnyObject, value: String) -> Bool {
guard let limitedPrefix = component.value(forKeyPath: "limitedPrefix") as? Int, let limitedSuffix = component.value(forKeyPath: "limitedSuffix") as? Int else {
return true
}
let matchZero = NSPredicate(format: MatchHeader.Name.kRegExHeader, MatchConstant.Name.kLimitedTextZeroRegEx)
let matchValue = NSPredicate(format: MatchHeader.Name.kRegExHeader, "^\\d{0,\(limitedPrefix)}$|^(\\d{0,\(limitedPrefix)}[\(MatchVariables.kLimitedTextNumberFloatSeparators)][0-9]{0,\(limitedSuffix)})$")
let isZero = !matchZero.evaluate(with: value)
let isCorrectValue = matchValue.evaluate(with: value)
return isZero && isCorrectValue ? true : false
}
class func matchLimitedTextTypeCustom(regEx: String, component: AnyObject, value: String) -> Bool {
let matchValue = NSPredicate(format: MatchHeader.Name.kRegExHeader, regEx)
return matchValue.evaluate(with:value)
}
class func matchLimitedTextTypeCustom(regExs: [String]?, component: AnyObject, value: String) -> Bool {
var results = true
guard let exs = regExs else { return results }
for regEx: String in exs {
results = results && matchLimitedTextTypeCustom(regEx: regEx, component: component, value: value)
}
return results
}
}
internal extension MatchManager {
class func getMatchContentWithOriginalText(originalText: String, replaceText: String, range: NSRange) -> String {
var matchContent = String()
// 1.原始内容判空
if originalText.count > 0 {
matchContent = originalText
}
// 2.新增内容越界处理
if replaceText.count > 0 {
if range.location < matchContent.count {
let index = matchContent.index(matchContent.startIndex, offsetBy: range.location)
matchContent.insert(contentsOf: replaceText, at: index)
}else {
matchContent.append(replaceText)
}
}
return matchContent
}
}