### Context The support of custom grok patterns was added in #15 Just add the directory with the name `Patterns` and a file (the file name doesn't matter) with your own patterns. Like Patterns\grok-custom-patterns: ``` ZIPCODE [1-9]{1}[0-9]{2}\s{0,1}[0-9]{3} ``` and use: ```csharp Grok grok = new Grok("%{ZIPCODE:zipcode}:%{EMAILADDRESS:email}"); var grokResult = grok.Parse($"122001:Bob.Davis@microsoft.com"); ``` ### DoD Describe a new feature in [README](https://github.com/Marusyk/grok.net/blob/main/README.md)