Here is the link to everything I used in the talk - PowerPoint, *.express files, and source code: MUNG_RegEx Talk.zip (34.5 KB)
Something I forgot to mention in the talk is the "RegexOptions.Compiled" flag. If you are going to execute the exact same regular expression repeatedly, you can use this flag in addition to any other flags you may have specified (e.g. RegexOptions.IgnorePatternWhitespace). This will cause the framework to dynamically compile the expression to IL instead of using RegEx op codes, and therefore dramatically increase performance.
If you are dynamically creating regular expressions, do NOT use the "Compiled" flag. Each unique compiled RegEx is kept in memory until the application quits - even if the RegEx object goes out of scope.
[Update] Fixed error in .express file
Remember Me
a@href@title, b, blockquote@cite, em, i, strike, strong, sub, super, u
Page rendered at Sunday, July 20, 2008 10:17:15 AM (Central Daylight Time, UTC-05:00)
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.