Parsing Project

FacebookTwitter
The Microsoft .NET Framework, which you can use with any .NET programming language such as C# (C sharp) or Visual Basic.NET, has solid support for regular expressions. The documentation of the regular expression classes is very poor, however. Read on to learn how to use regular expressions in your .NET applications. http://www.regular-expressions.info/dotnet.html

Using Regular Expressions with .NET - C# and Visual Basic

.NET Framework Regular Expressions

http://msdn.microsoft.com/en-us/library/hs600312(v=vs.71).aspx Regular expressions provide a powerful, flexible, and efficient method for processing text. The extensive pattern-matching notation of regular expressions allows you to quickly parse large amounts of text to find specific character patterns; to extract, edit, replace, or delete text substrings; or to add the extracted strings to a collection in order to generate a report. For many applications that deal with strings (such as HTML processing, log file parsing, and HTTP header parsing), regular expressions are an indispensable tool. Microsoft .NET Framework regular expressions incorporate the most popular features of other regular expression implementations such as those in Perl and awk. Designed to be compatible with Perl 5 regular expressions, .NET Framework regular expressions include features not yet seen in other implementations, such as right-to-left matching and on-the-fly compilation.
A Crash Course Steven A. Smith

Regular Expressions in ASP.NET

http://msdn.microsoft.com/en-us/library/ms972966.aspx

Learn Regular Expression (Regex) syntax with C# and .NET - Rad Software

What are Regular Expressions? Regular Expressions are a powerful pattern matching language that is part of many modern programming languages. Regular Expressions allow you to apply a pattern to an input string and return a list of the matches within the text. Regular expressions also allow text to be replaced using replacement patterns. It is a very powerful version of find and replace. http://www.radsoftware.com.au/articles/regexlearnsyntax.aspx
http://www.radsoftware.com.au/regexdesigner/ Rad Software Regular Expression Designer is a free download that helps programmers learn, develop and test Regular Expressions. It is an interactive Windows application that is designed to be simple and easy to use. Features The Regex match results are listed in a tree with levels for Matches, Groups and Captures. Clicking on a Match, Group or Capture will highlight it in the Input text window Regex.Replace is supported and the results of the replace are listed in a separate window.

Regular Expression (Regex) Design and Test Tool for .NET - Rad Software

http://www.exforsys.com/tutorials/csharp/regular-expressions-and-csharp-.net.html

Regular Expressions and C#, .NET

Author : Exforsys Inc. Published on: 14th Nov 2005 | Last Updated on: 16th Feb 2011 Regular Expressions and C#, .NET

The 30 Minute Regex Tutorial

Learning .NET Regular Expressions with Expresso Did you ever wonder what Regular Expressions are all about and want to gain a basic understanding quickly? My goal is to get you up and running with a basic understanding of regular expressions within 30 minutes. http://www.codeproject.com/Articles/9099/The-30-Minute-Regex-Tutorial