Help for this page

Select Code to Download


  1. or download this
    /usr/bin/perl
    /usr/bin/ 
    /perl 
    / 
    perl
    
  2. or download this
    if ($string =~ m#(\S*/)(\S*)#) {     
       print "Path = $1, $Filename = $2\n"; 
    ...
    elsif ($string =~ /(\S+)/) {     
       print "No path, Filename = $1\n"; 
    }