let $PWD = /Unix_Volume/Users/a/b/c/d
I would expect:
echo $PWD | perl -ne 'if( /(\w+)[^\/]/ ){ print $1; }'
to display "Unix_Volume". However, it displays "Unix_Volum." Why doesn't the regex capture the last character?
|
Since \w doesen't have a forward slash in its class, why do you need [^\/] ? /(\w+)/ will do. It captures the first occurance of this class. edit: /.*\b(\w+)/ to capture the last occurance. |
||||
|
|
|
(\w+) => Unix_Volum [^\/] => e (not a /) / => / |
|||
|
|
Try:
You should always use the modules that come with Perl where possible. For a list of them, see |
|||
|
|
|
The The |
|||
|
|
use Path::Class; (file '/Unix_Volume/Users/a/b/c/d')->parent->dir_list;returns('', qw(Unix_Volume Users a b c)). – daxim Mar 11 '11 at 16:15