I've noticed some code that uses the static method:
Regex.IsMatch([someRegexStr], [someInputStr])
Is it worth replacing it with the instance method? Like:
private readonly Regex myRegex = new Regex([someRegexStr]);
...
myRegex.IsMatch([someInputStr]);