Help for this page

Select Code to Download


  1. or download this
    my @Names =~ grep("$Info", @Lines);
    
  2. or download this
    my @Names = grep(/$Info/, @Lines);
    
  3. or download this
    my @Names = grep(/^$Info$/, @Lines);
    
  4. or download this
    use warnings;
    or
    #!/usr/bin/perl -w (pre 5.6)