show/hide this revision's text 2 formatting

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.

I would generally use Regex.Replace() initially because it's more convenient and only change if it there's a performance problem.

Also you could write extension methods on string for convenience, eg:

public static string RegexReplace(this string source, string pattern, string replacement)
{
    return Regex.Replace(source, pattern, replacement);
}
show/hide this revision's text 1

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.

I would generally use Regex.Replace() initially because it's more convenient and only change if it there's a performance problem.

Also you could write extension methods on string for convenience, eg:

public static string RegexReplace(this string source, string pattern, string replacement) { return Regex.Replace(source, pattern, replacement); }