You can use the builder in your project like this:
JGORegExpBuilder *builder = RegExpBuilder().exactly(1).of(@"p");
builder.test(@"p"); // YES
builder.test(@"q"); // NO
// If you want to access the underlying NSRegularExpression
NSRegularExpression *regularExpression = builder.regularExpression;
For simple matches use the builder directly. If you want to do more, simply access the NSRegularExpression
, e.g. to search and replace inside a string.
See the JGORegExpBuilderTests.m
file for some more examples of what you can do
JGORegExpBuilder is available through CocoaPods, to install it simply add the following line to your Podfile:
pod "JGORegExpBuilder"
Based on the JavaScript builder by thebinarysearchtree.
JGORegExpBuilder is available under the MIT license. See the LICENSE file for more info.