Re: RegEx: odd number of slashes? and too many slashes?
- From: robic0
- Date: Sun, 16 Jul 2006 20:47:32 -0700
On Mon, 17 Jul 2006 03:20:44 GMT, Dan Wilkin <nibbles.bits@xxxxxxxxxxx> wrote:
Why does the following code work to find the literal UNC path specified.
altPath should have worked, right? It looks like the regex engine is
gobbling up slashes!! Perl 5.x
#my $altPath = '\\\\websrv\\VMServer\\cvs\\SAMS\\archives';
my $rootPath = '\\\\\\\websrv\\\VMServer\\\cvs\\\SAMS\\\archives';
# load the list of obsolete files
sub loadObsoletes {
my $i = 0;
my $line;
open SRC, $src_name or die "Can't open file '$src_name'";
while (<SRC>) {
chomp;
/$rootPath(.+?)-arc - (.+)/o; # extract the filenames
into an array
print "Matched: <$`> $& <$'>\n";
print "Parsed line $i as: {$1}{$2}\n" if $verbose;
$line = $1;
$line =~ s[\\][/]g;
print "Subst as: {$line}\n" if $verbose;
$LoF[$i] = $line;
$i++;
}
close SRC;
print "Listed source file as: @LoF" if $verbose;
}
Thnx,
Dan
U tell me. If you don't understand "in solution" then you can't post here
robic0
.
- References:
- RegEx: odd number of slashes? and too many slashes?
- From: Dan Wilkin
- RegEx: odd number of slashes? and too many slashes?
- Prev by Date: Re: CPANPLUS on debian headache
- Next by Date: Re: Module::Build / version / cpan / tail chasing
- Previous by thread: RegEx: odd number of slashes? and too many slashes?
- Next by thread: Re: RegEx: odd number of slashes? and too many slashes?
- Index(es):
Relevant Pages
|