Help for this page

Select Code to Download


  1. or download this
    next if $string !~ /<b>(\w|\.+\.zip)<\/b>/;
    &do_something_with($1);
    
  2. or download this
    next if $string !~ /<b>\w|\.+\.zip<\/b>/;
    &do_something_with($1);