CSharpVerbalExpressions
CSharpVerbalExpressions copied to clipboard
Make a Verbal Expression wizard, that helps you visually create and test the expressions validations and captures.
Project looks like dead and poor documented. Is there alternatives?
Hi, I admire your work, and these are some suggestions: 1- Add "Const" as another name to "Then" 2- Add another overload to AnyOf that accepts Char Array, because it's...
I have changes the csproj into xproj. I have also added the double dll's in nuget package, so there is a net4 and new netstandard
Hi all, I ran the following test to check how well verbal expression performs compared to a regular expression: ``` [Test] public void TestingIfWeHaveAValidURL() { var testMe = "https://www.google.com"; var...
Sorry for wasting your time and mine. I didn't read the code, and thought you don't have this. Also misunderstood how this works. - I thought it was an alternative...
Like the look of this lib but was wondering how I could produce something like this: `/(?[\d]{1,2})` That way I can use it in a Nancy route definition like so:...
When you have an `AnythingBut` followed by a `Maybe` assuming the value of `Maybe` isn't the value of `AnythingBut` then the `Maybe` should be ignored. For instance the two following...
When using the `.Range` method with range arrays greater than 3, it causes invalid Regex to be output. An example can be seen with the following snippet taken from a...
Some regexes can get very complex and work best as standalone compiled regex dlls. It would be nice to have something like a .verbex file that you can include in...