SteveX has a Monad forum on his site, and one of the first topics posted (by Ayende) was an example script on using regular expressions in Monad.
This is helpful example of how well Monad integrates with the .Net framework. You can call out to [System.Text.RegularExpressions.Regex], and port your C# regular expression almost effortlessly.
But wait, it only gets better.
Regular Expressions are a glorious beast of burden in scripting languages, as you might have noticed if you’ve read much Perl. Because of that, we’ve given them first-class language support via the “-match” expression.
