I finally got a handle on regexps as used by functions like ereg(), but now that I know it's better to use preg_match() and the other Perl-compatible regexp functions, I need a READABLE (i.e. aimed at a mid-level techie, not code-god) bit of info on proper syntax, what the various parts are, etc. I've found lots on non-Perl but not much so far on Perl. The PHP manual is no help at all
For instance - when do I use forward slashes at the beginning and end? What characters are "special" and need to be escaped? How do I combine chunks of code - with a period as in non-Perl, or another way?
Any suggestions for a not-bleedingly-technical source for this kind of info?
Thanks!