Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. leroy07

    Matching emails.

    What regex can I use to match an email address?
  2. leroy07

    parsing html data

    I know how to do regular expressions but if I do m/<title>(.*?)<\/title>/ (example) that will only get the first one, i need to get them all.
  3. leroy07

    parsing html data

    I haven't written any code because I don't know where to start, I know how to get whatevers between the first occurence of a tag, but I don't know how to do it for ALL the tags.
  4. leroy07

    parsing html data

    I have a webpage, and I want to connect (using LWP::Simple or LWP::Useragent) and get whatever strings between each occurence of a certain tag.
  5. leroy07

    Parsing HTML data

    #!/usr/bin/perl use warnings; use strict; use LWP::Simple; my $site="http://www.mysite.com"; my $content=get $site; print "$content \n"; Since in my webpage i use img src="images/" etc.. instead of a full path, I want my perl app to connect, get the $content and change all img src="images/" to...

Part and Inventory Search

Back
Top