Help for this page

Select Code to Download


  1. or download this
    use LWP::Simple;
    my $url = 'www.website.com';
    ...
    my ($number) = $content =~ /'(\d{3})'\)">San Francisco (Manager)/;
    
    print "$number\n";
    
  2. or download this
     <A HREF="JavaScript:AFunction('AA', 'B','0','Project','113')">
    San Francisco (Manager)
    
  3. or download this
    my ($number) = $content =~ /'(\d{3})'\)">\nSan Francisco (Manager)/;
    
  4. or download this
    my ($number) = $content =~ /'(\d{3})'\)">San Francisco (Manager)/s;