View Single Post
Old Jun 12th, 2005, 9:42 AM   #3
Dizzutch
Professional Programmer
 
Dizzutch's Avatar
 
Join Date: Dec 2004
Location: Worcester, MA
Posts: 441
Rep Power: 4 Dizzutch is on a distinguished road
Send a message via ICQ to Dizzutch Send a message via AIM to Dizzutch Send a message via MSN to Dizzutch Send a message via Yahoo to Dizzutch
here's it a little more detailed
open FILE, "<file.html";
@tables;
while (<FILE>)
{
   chomp;
   if (/<td>(.*)<\/td>/){
      push @tables, $1;
   }
}
close FILE;
Dizz
__________________
naked pictures of you | PFO F@H stats
Dizzutch is offline   Reply With Quote