in reply to Re^2: Regex with two strings from files
in thread Regex with two strings from files
The qr// m// s/// delimiters are (more or less) arbitrary. (Update: Please see Regexp Quote-Like Operators in perlop.)c:\@Work\Perl\monks>perl -wMstrict -le "my $s = 'this is the path/to/my/file what i want'; ;; my $rx_ptf = qr{ \w+ (?: / \w+)+ }xms; ;; print qq{matched: '$1'} if $s =~ m{ \b ($rx_ptf) \b }xms; " matched: 'path/to/my/file'
Give a man a fish: <%-{-{-{-<
|
|---|