perl_mystery has asked for the wisdom of the Perl Monks concerning the following question:
I have input lines that start with "./" and ".\",my regex works when the line starts with ".\" fails for the other one,I need help to write a regex that fits in both the scenarios?
INPUT:- .\amss\platform\cs\bin\cdep.exe-43041;FILE.flf;//deploy/core/cs/pk/rel +/1.4/bin/cdep.exe - VU_CORE_CS_PK.01.04.00.07.00 : 5 ./modem_proc/build/ms/dmss_flags.min-000197;FILE.flf;//depot/asic/buil +d/ms/dmss_flags.txt - BUILD_MS.00.00.02 : 5 I have the following code which fails when the line starts with "./",h +ow do I modify the below code to suit for both the above inputs? OUTPUT:- KEYS:-//deploy/core/cs/pk/rel/1.4/bin/cdep.exe //depot/asic/build/ms/dmss_flags.txt VALUES:- amss\platform\cs\bin\cdep.exe modem_proc/build/ms/dmss_flags.min my %hash_basebuild_rpf; open my $inputfh, '<', $basebuild_rpf_file or die "could not open $bas +ebuild_rpf_file - $!"; while (my $line = <$inputfh>) { chomp($line); my ($key) = $line =~ /;([^;]+)\s-\s/; print "KEY:$key\n"; my ($value) = $line =~ /\.\\(.*);/; # this line fails when the lin +e starts with "./" print "VALUE:$value\n"; $hash_basebuild_rpf{$key} = $value unless (exists $hash_basebuild_ +rpf{$key}); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Regex failing when the line starts with "./"
by davido (Cardinal) on Feb 03, 2011 at 09:38 UTC | |
by elef (Friar) on Feb 03, 2011 at 10:53 UTC | |
by Anonymous Monk on Feb 03, 2011 at 12:33 UTC | |
by Anonymous Monk on Feb 03, 2011 at 12:36 UTC | |
by Anonymous Monk on Feb 03, 2011 at 14:07 UTC | |
|
Re: Regex failing when the line starts with "./"
by tospo (Hermit) on Feb 03, 2011 at 09:40 UTC | |
by davido (Cardinal) on Feb 03, 2011 at 09:43 UTC | |
|
Re: Regex failing when the line starts with "./"
by Anonymous Monk on Feb 03, 2011 at 10:21 UTC |