// // Copyright (c) 2019 Open Whisper Systems. All rights reserved. // import Foundation @objc public extension NSRegularExpression { @objc func hasMatch(input: String) -> Bool { return self.firstMatch(in: input, options: [], range: NSRange(location: 0, length: input.utf16.count)) != nil } @objc class func parseFirstMatch(pattern: String, text: String, options: NSRegularExpression.Options = []) -> String? { do { let regex = try NSRegularExpression(pattern: pattern, options: options) guard let match = regex.firstMatch(in: text, options: [], range: NSRange(location: 0, length: text.utf16.count)) else { return nil } let matchRange = match.range(at: 1) guard let textRange = Range(matchRange, in: text) else { return nil } let substring = String(text[textRange]) return substring } catch { return nil } } @objc func parseFirstMatch(inText text: String, options: NSRegularExpression.Options = []) -> String? { guard let match = self.firstMatch(in: text, options: [], range: NSRange(location: 0, length: text.utf16.count)) else { return nil } let matchRange = match.range(at: 1) guard let textRange = Range(matchRange, in: text) else { return nil } let substring = String(text[textRange]) return substring } }