|
by BCLTeam via BCL Team Blog on 10/19/2006 6:29:00 PM
The .NET Framework System.Text.RegularExpressions.Regex class maintains a cache of parsed regular expressions. The cache improves the performance of methods that create regular expressions, as the Regex class is able to avoid the cost of re-parsing and re-compiling existing regular expressions. The cache does not affect the performance of match operations on the same input string, as match results are not cached.
As part of the .NET Framework 2.0 Redistributable, the BCL team m
... [ read more ]
|