-
-
Save feelingplace/4ecaaf665af255c77eaa to your computer and use it in GitHub Desktop.
Swift utility class for regular expression
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
class Regexp { | |
let internalRegexp: NSRegularExpression | |
let pattern: String | |
init(_ pattern: String) { | |
self.pattern = pattern | |
do { | |
self.internalRegexp = try NSRegularExpression(pattern: pattern, options: NSRegularExpressionOptions.CaseInsensitive) | |
} catch let error as NSError { | |
print(error.localizedDescription) | |
self.internalRegexp = NSRegularExpression() | |
} | |
} | |
func isMatch(input: String) -> Bool { | |
let matches = self.internalRegexp.matchesInString( input, options: [], range:NSMakeRange(0, input.characters.count) ) | |
return matches.count > 0 | |
} | |
func matches(input: String) -> [String]? { | |
if self.isMatch(input) { | |
let matches = self.internalRegexp.matchesInString( input, options: [], range:NSMakeRange(0, input.characters.count) ) | |
var results: [String] = [] | |
for i in 0 ..< matches.count { | |
results.append( (input as NSString).substringWithRange(matches[i].range) ) | |
} | |
return results | |
} | |
return nil | |
} | |
func replace(string: String, replaceString: String) -> String? { | |
let matchs = self.internalRegexp.stringByReplacingMatchesInString(string, options: [], range: NSMakeRange(0, string.characters.count), withTemplate: replaceString) | |
return matchs | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add func replace