Help for this page

Select Code to Download


  1. or download this
    my $filepath = 'c:\somedir\file.ext'
    
  2. or download this
    $filename eq 'file.ext'
    
  3. or download this
    $filepath =~ /([\w|\.]*)$/;
    my $filename = $1;
    
  4. or download this
    $filepath =~ /([^\\|^\/]*)$/;