in reply to [Catalyst] How do you handle "URL Parameters" (aka advanced "route matching")

In addition, you should specify the URL using a regex pattern that, to the maximum extent feasible, does verify the format of the various URL parameters, such that it will successfully match only a well-formed URL ... $year is exactly four digits, and so on.
  • Comment on Re: [Catalyst] How do you handle "URL Parameters" (aka advanced "route matching")

Replies are listed 'Best First'.
Re^2: [Catalyst] How do you handle "URL Parameters" (aka advanced "route matching")
by three18ti (Monk) on Apr 04, 2014 at 07:34 UTC

    At Theodore recommendation I'm headed off to check the args docs, but is there an easy way you can recommend to use regex with the Args() parameter?