Help for this page

Select Code to Download


  1. or download this
    my @files =grep { /\.jpg$/i || /\.gif/i || /\.png/i || /\.bmp/i  || /\
    +.jpeg/i} readdir(DIR);
    
  2. or download this
    my @files = grep { /\.(?:jpg|gif|png|bmp|jpeg)$/i } readdir(DIR);
    
  3. or download this
       $file =~ m/(.[^.]+)$/;
       $ext = $1;