regular expressions are a very useful thing for pattern matching, but if you don't know them well, they are at least cryptic. How to make the first step?
This is a list of links to sites that are related to regular expressions, if you know better sites, please post a reply.
Tutorials:
- regular-expressions.info tutorial
- Regular Expressions PHP Tutorial: This has limited regular expressions explications, but a nice PHP regular expressions functions part
- tutorial at freelance volunteer
- How To Use Regular Expressions In Perl And PHP
RegExpEditor
And one more thing, in PHP use the preg_* functions (PCRE functions) rather than the ereg_* functions (POSIX functions). They are faster and more complete.













