Which is preferred: Regex.Replace() or. aRegexObject.Replace()? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:37:37Z http://stackoverflow.com/feeds/question/470608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/470608/which-is-preferred-regex-replace-or-aregexobject-replace 0 Which is preferred: Regex.Replace() or. aRegexObject.Replace()? chris 2009-01-22T20:05:22Z 2009-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#470620 1 Answer by orip for Which is preferred: Regex.Replace() or. aRegexObject.Replace()? orip 2009-01-22T20:10:18Z 2009-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#470623 3 Answer by Andrew Hare for Which is preferred: Regex.Replace() or. aRegexObject.Replace()? Andrew Hare 2009-01-22T20:11:02Z 2009-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#470632 0 Answer by BlackTigerX for Which is preferred: Regex.Replace() or. aRegexObject.Replace()? BlackTigerX 2009-01-22T20:13:33Z 2009-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#470830 0 Answer by Brett for Which is preferred: Regex.Replace() or. aRegexObject.Replace()? Brett 2009-01-22T21:14:06Z 2009-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>