Like the look of this lib but was wondering how I could produce something like this: `/(?<age>[\d]{1,2})` That way I can use it in a Nancy route definition like so: ``` Get["/(?<age>[\d]{1,2})"] = parameters => {"Hello World"}; ```