Which is preferred: Regex.Replace() or. aRegexObject.Replace()? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T16:37:37Zhttp://stackoverflow.com/feeds/question/470608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/470608/which-is-preferred-regex-replace-or-aregexobject-replace0Which is preferred: Regex.Replace() or. aRegexObject.Replace()?chris2009-01-22T20:05:22Z2009-01-23T11:17:55Z
<p>This is a followup to <a href="http://stackoverflow.com/questions/262448/replace-non-numeric-with-empty-string#262466">this question</a></p>
<p>The first two answers are both correct and complete and at the end of the day, produce exactly the same result. However, one uses a Regex object and calls the aRegex.Replace(...) method (Joel's answer) and the other uses the static Regex.Replace(...) method. (CMS' answer).</p>
<p>Which method is preferred?<br />
Under what circumstances would you change your mind?</p>
http://stackoverflow.com/questions/470608/which-is-preferred-regex-replace-or-aregexobject-replace/470620#4706201Answer by orip for Which is preferred: Regex.Replace() or. aRegexObject.Replace()?orip2009-01-22T20:10:18Z2009-01-22T20:10:18Z<p>Using the regex object means the regex is compiled only once, so you get better performance (you need to save the regex object someplace).</p>
http://stackoverflow.com/questions/470608/which-is-preferred-regex-replace-or-aregexobject-replace/470623#4706233Answer by Andrew Hare for Which is preferred: Regex.Replace() or. aRegexObject.Replace()?Andrew Hare2009-01-22T20:11:02Z2009-01-22T20:16:29Z<p>Using the static instance will create a new <code>Regex</code> object each time so it is better to instantiate it yourself. Here is what I found using Reflector on System.dll:</p>
<pre><code>public static string Replace(string input, string pattern, string replacement)
{
return new Regex(pattern, RegexOptions.None, true).Replace(input, replacement);
}
</code></pre>
<p>Plus if you instantiate your own instance you will be able to compile it as well and improve performance for multiple uses. </p>
<p>You <em>can</em> send <code>RegexOptions.Compiled</code> to one of the static <code>Replace</code> overloads but this is pointless as the <code>Regex</code> object that will be instantiated with this flag cannot be used again.</p>
http://stackoverflow.com/questions/470608/which-is-preferred-regex-replace-or-aregexobject-replace/470632#4706320Answer by BlackTigerX for Which is preferred: Regex.Replace() or. aRegexObject.Replace()?BlackTigerX2009-01-22T20:13:33Z2009-01-22T20:13:33Z<p>aRegex.Replace(...) would be preferred if you can reuse it</p>
http://stackoverflow.com/questions/470608/which-is-preferred-regex-replace-or-aregexobject-replace/470830#4708300Answer by Brett for Which is preferred: Regex.Replace() or. aRegexObject.Replace()?Brett2009-01-22T21:14:06Z2009-01-23T11:17:55Z<p>It's not as inefficient as it looks. Going into the Regex constructor with reflector, it caches the compiled regex code. That's probably the most time-consuming part.</p>
<p>I would generally use Regex.Replace() initially because it's more convenient and only change if it there's a performance problem.</p>
<p>Also you could write extension methods on string for convenience, eg:</p>
<pre><code>public static string RegexReplace(this string source, string pattern, string replacement)
{
return Regex.Replace(source, pattern, replacement);
}
</code></pre>