Forum Moderators: phranque
Randy
I'd think PHP or Perl would be the fastest since at their heart, they are both bascialy text processing and matching engines. Both are well suited for html slice and dice work.
I've been looking around and I can't find a basic script to start working with. Is the PHP syntax pretty "self-explanatory" that I could start from scratch without alot of reading? I just download PHP this weekend and haven't really played with it. I did read a tut on Webmonkey and it I grapsed that pretty well. Of course I'm trying to do this ASAP, so that's why I'm not attempting to start from scratch. (I don't have the time.) I appreciate the advice and thanks for referring me to searchengineworld. I love this site, and I think I'm going to like that one also.
Randy
preg_match(...)
preg_match_all(...)
These are my bread and butter. Easy to use and does the job. However, you'll need readup on basic regular expressions first, whether you're using PHP or Perl.
Once you've covered REGEXP's, then the REGEX syntax in Perl or PHP is the same.