Help for this page

Select Code to Download


  1. or download this
    my ( $keeper ) = grep /^Line 3 : /, @lines;
    
  2. or download this
    use List::Util qw( first );
    
    my $keeper = first { /^Line 3 : / } @lines;