I have some useful regular expressions in Perl. Is there a simple way to translate them to .NET\'s dialect of regular expressions?
If not, is there a concise referen
It really depends on the complexity of the regular expression - many ones will work the same out of the box.
Take a look at this .NET regex cheat sheet to see if an operator does what you expect it to do.
I don't know of any tool that automatically translates between RegEx dialects.