I know this is probably personal preference, but what is your preferred method of grouping regular expressions. Do you just have one class with all regular expressions or do you separate them out by type (strings, numbers, etc) or something like by usage (emails, phone, ssn)
I know this is probably personal preference, but what is your preferred method of
Share
I like to keep them close to where they are used, as private static members of the using class.