Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
970 views
in Technique[技术] by (71.8m points)

static vs. instance versions of Regex.Match in C#

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]);
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

One of the regular expression optimization recommendations in the following link: Regular Expression Optimization by Jim Mischel

For better performance on commonly used regular expressions, construct a Regex object and call its instance methods.

The article contains interesting topics such as caching regular expressions and compiling regular expressions along with optimization recommendations.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...