Using the static instance will create a new Regex object each time so it is better to instantiate it yourself. Here is what I found using Reflector on System.dll:
public static string Replace(string input, string pattern, string replacement)
{
return new Regex(pattern, RegexOptions.None, true).Replace(input, replacement);
}
Plus if you instantiate your own instance you will be able to compile it as well and improve performance for multiple uses.
You can send RegexOptions.Compiled to one of the static method Replace overloads but this is pointless as the Regex object that will be instantiated with this flag cannot be used again.
