Help for this page

Select Code to Download


  1. or download this
    $page =~ /push_delayed_image\(([^,]+)/;
    my $wanted = $1;
    
  2. or download this
    if ($page =~ /push_delayed_image\(([^,]+)/)
    {
        my $wanted = $1;
        ...
    }