Help for this page

Select Code to Download


  1. or download this
    return (map{ /^$key/ and s/^$key//, $_ } grep( /^$key/, @ta))[1] ;
    
  2. or download this
    map{ /^$key/ and s/^$key//; $_ } grep( /^$key/, @ta)
    
  3. or download this
    map{ /^$key/ and s/^$key// and print "val=$_\n", $_ }