Help for this page

Select Code to Download


  1. or download this
        my @grepped = grep /\d{8}\.txt$/ @filenames;
    
  2. or download this
        if ( $filename =~ m/(\d{4})\d{4}.txt$/ ) {
            print( $1 . "\n" );
        }