Popularity
2.8
Stable
Activity
0.0
Stable
112
8
12
Programming language: Swift
License: MIT License
Tags:
Regex
SwiftRegex alternatives and similar libraries
Based on the "Regex" category.
Alternatively, view SwiftRegex alternatives based on common mentions on social networks and blogs.
-
PySwiftyRegex
Easily deal with Regex in Swift in a Pythonic way
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SwiftRegex or a related project?
README
SwiftRegex
Perl-like regex =~ operator for Swift
This package implements a =~ string infix operator for use in testing regular expressions and retrieving sequences of matching sub-strings.
The regular expression matching is performed using NSRegularExpression.
Example
for match in "Hello World" =~ "\\w+" {
println("matched: \(match)")
}
Prints:
matched: Hello
matched: World