EDIT: To aid in load time, I have all of the following set NOT to load: images, video, sound, run active x, load active x, popup. I then have the following set to make sure they DO load: scripts, java & frames
If you visit this URL:
http://maps.google.com/maps
And search something in this format "pizza clarks summit pa" <- clarks summit being a town name & pa being "pennsylvania", then transfer the DOM source to the regex portion of ZP, the following regex returns the following data:
(?<=drg:true\,laddr:\")(.*?)(?=\")
----------------------------------- match # 0 -----------------------------------
100 Old Lackawanna Trl, Clarks Summit, PA 18411-9108 (Fiorillo's Pizza)
----------------------------------- match # 1 -----------------------------------
100 East Grove Street, Clarks Summit, PA 18411-1750 (Colarusso's Cafe)
----------------------------------- match # 2 -----------------------------------
1002 South State Street, Clarks Summit, PA 18411-2249 (Dino \x26 Francesco's Pizza-Pasta)
----------------------------------- match # 3 -----------------------------------
100 Highland Avenue, Clarks Summit, PA 18411-1571 (Basilicos Pizzeria)
----------------------------------- match # 4 -----------------------------------
900 South State Street, Clarks Summit, PA 18411-1756 (Pizza Hut)
----------------------------------- match # 5 -----------------------------------
223 Northern Boulevard, S Abington Twp, PA 18411-9304 (Bellissimo Pizzeria and Ristorante)
----------------------------------- match # 6 -----------------------------------
1121 Northern Blvd, South Abington Township, PA 18411 (Domino's Pizza)
----------------------------------- match # 7 -----------------------------------
926 Lackawanna Trl, Clarks Summit, PA 18411-9278 (Wellington's Pub \x26 Eatery)
----------------------------------- match # 8 -----------------------------------
206 Grand Avenue, Clarks Summit, PA 18411-1402 (Jimmy D's Pizza \x26 More)
----------------------------------- match # 9 -----------------------------------
919 Northern Boulevard, S Abington Twp, PA 18411-2241 (Thick N Thin Pizza)
As you can see, it grabs the first 10 results perfectly. You would obviously be able to work with each of these strings individually to do with what you want (I'm thinking replacing ( with a comma and replacing ) with nothing, then appending the string to a .txt file would make it open perfectly as a CSV within excel).