Main menu:

Site search

Categories

Tags

intern

Oracle und SQL

Perl

Archive for 'JavaScript'

Scraping web pages in JavaScript with Perl

Sometimes you want to scrape Webpages which contain JavaScript and therefore resist beeing scraped with Web::Scraper or the likes. Imagine some JavaScript code like the following to disguise a email address. function mail() { var name = “mail”; var domain = “example.com”; var mailto = ‘mailto:’ + name + ‘@’ + domain; document.write(mailto); } mail(); […]