Posts Tagged ‘regular expressions’

Regular Expressions in .Net

Monday, February 21st, 2005

Regular Expressions in .Net (System.Text.RegularExpression) are fast!

When creating a Regex with the compile flag the regex will actually be compiled to very optimized native assembly which makes the .net regular expression library faster than any c# code you could write for one specific case.

This was a pleasant suprise :-) for now I know I can use regular expression for all those small things like parsing input.