Help for this page

Select Code to Download


  1. or download this
    my ($location)   = $html =~ m/Location:\s*([^<]+)/i;
    my ($time)       = $html =~ m/Time:\s*([^<]+)/i;
    ...
        }gex;
      return $unescape;
    }
    
  2. or download this
    my @location   = $html =~ m/Location:\s*([^<]+)/gi;
    # first match will be in $loction[0] and last match (no suprisingly) i
    +n $location[-1]