Learn how to use .NET and Managed C++ to program owner-draw menu items with the fonts and point sizes you want.
Articles Written by Tom Archer - MSFT
Search Entire Directories for Specified Files with Managed C++
Tom Archer presents a generic Managed C++ function that searches a directory hierarchy for all instances of a specified file name, utilizing the .NET DirectoryInfo and FileInfo classes.
Using Regular Expressions to Parse for E-Mail Addresses
The final installment of Tom Archer's series on using the .NET regular expression classes from Managed C++ presents several complex patterns that allow you to locate almost any valid e-mail address from a body of text.
Using Regular Expressions to Search and Replace Text
When you deal with user input or text files, you usually have to search through that input and replace literals, special characters, or patterns. Learn how to perform this common task via the .NET regular expressions classes.
.NET Regular Expressions and Captures
Learn the subtle differences between groups and captures in .NET regular expressions and how to suppress capture information when your applications don't need it.
Named and Non-Capturing Groups in .NET Regular Expressions
Learn how to better isolate your regular expressions patterns from changes. You can name the groups and make your patterns more efficient by defining them as "non-capturing."
