Help for this page

Select Code to Download


  1. or download this
      if($files=~/(.*?)\/([^\/]+)$/) {
        $f_name = $2;
      }
    
  2. or download this
      # match all non-slashes up to end of line
      if($files=~m|([^/]+)$|) {
        $f_name = $1;
      }
    
  3. or download this
      # match everything beyond last slash
      if($files=~m|.*/(.+)|) {
        $f_name = $1;
      }