Learning Regular Expressions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If you are not new to VB.NET but are new to regular expressions, you need to get a free copy of "Pragmatic Guide to Regular Expressions for VB.NET Programmers". I wrote this guide because all of the sources that I researched for information on this topic, including Microsoft Help pages, did not properly address it from the viewpoint of someone new to regular expressions.

If you send me an email, I will return you a zipped file that includes a Word document, a VB.NET project plus a couple of other useful references that I have developed to assist in learning VB.NET. The Word document explains how to process regular expressions up to the point of using groups and the OR (|) character. The project contains a form that parses out over 100 predefined expressions into a verbal explanation of their behavior. You should find both of these useful while you are learning this topic.

Any comments will be greatly appreciated. Developing these materials is a work-in-progress. Someone needs to step to the plate and present this information in a useful format for programmers that are new to regular expressions.
 
Hi!

Will you PLEASE send me the Regular Expressions doc that you wrote?

Thanks!

Regards

T. Jordaan
 
If you are willing to share your notes with the general public, why not
write an article on Codeproject.com or a sample on GotDotNet.com?

http://www.codeproject.com

http://www.gotdotnet.com

HTH,

Trev.


GenoJoe said:
If you are not new to VB.NET but are new to regular expressions, you need
to get a free copy of "Pragmatic Guide to Regular Expressions for VB.NET
Programmers". I wrote this guide because all of the sources that I
researched for information on this topic, including Microsoft Help pages,
did not properly address it from the viewpoint of someone new to regular
expressions.
If you send me an email, I will return you a zipped file that includes a
Word document, a VB.NET project plus a couple of other useful references
that I have developed to assist in learning VB.NET. The Word document
explains how to process regular expressions up to the point of using groups
and the OR (|) character. The project contains a form that parses out over
100 predefined expressions into a verbal explanation of their behavior. You
should find both of these useful while you are learning this topic.
Any comments will be greatly appreciated. Developing these materials is a
work-in-progress. Someone needs to step to the plate and present this
information in a useful format for programmers that are new to regular
expressions.
 
* "=?Utf-8?B?R2Vub0pvZQ==?= said:
If you are not new to VB.NET but are new to regular expressions, you
need to get a free copy of "Pragmatic Guide to Regular Expressions for
VB.NET Programmers". I wrote this guide because all of the sources that
I researched for information on this topic, including Microsoft Help
pages, did not properly address it from the viewpoint of someone new to
regular expressions.

A really good size about Regular Expressions in general can be found
here:

<http://www.regular-expressions.info>
 
Back
Top