Help for this page

Select Code to Download


  1. or download this
    $word =~ /^(\d)\st=(\S+)/;
    next if ($1 == 0);
    print "$2\n";
    
  2. or download this
    next if(!($word =~ /(\d)\st=(\S+)/));
    print "$2\n";