关于extracting the n'th regex match的早期问题,我现在需要替换匹配项,如果找到的话。
我认为我可以定义提取子例程,并在用/e
修饰符替换时调用它。我显然是错的(诚然,我有一个XY problem)。
use strict;
use warnings;
sub extract_quoted { # à la codaddict
my ($string, $index) = @_;
while($string =~ /'(.*?)'/g) {
$index--;
return $1 if(! $index);
}
return;
}
my $string = "'How can I','use' 'PERL','to process this' 'line'";
extract_quoted ( $string, 3 );
$string =~ s/&extract_quoted($string,2)/'Perl'/e;
print $string; # Prints 'How can I','use' 'PERL','to process this' 'line'
当然,这项技术存在许多其他问题:
鉴于这种情况,我想知道这可以通过哪些方式实施。
答案 0 :(得分:4)
编辑: leonbloy首先提出了这个解决方案。如果你试图对它进行投票,那么首先要投资leonbloy。
有点灵感来自leonbloy(之前)的回答:
$line = "'How can I','use' 'PERL' 'to process this';'line'";
$n = 3;
$replacement = "Perl";
print "Old line: $line\n";
$z = 0;
$line =~ s/'(.*?)'/++$z==$n ? "'$replacement'" : "'$1'"/ge;
print "New line: $line\n";
Old line: 'How can I','use' 'PERL' 'to process this';'line' New line: 'How can I','use' 'Perl' 'to process this';'line'
答案 1 :(得分:3)
或者你可以做这件事
use strict;
use warnings;
my $string = "'How can I','use' .... 'perl','to process this' 'line'";
my $cont =0;
sub replacen { # auxiliar function: replaces string if incremented counter equals $index
my ($index,$original,$replacement) = @_;
$cont++;
return $cont == $index ? $replacement: $original;
}
#replace the $index n'th match (1-based counting) from $string by $rep
sub replace_quoted {
my ($string, $index,$replacement) = @_;
$cont = 0; # initialize match counter
$string =~ s/'(.*?)'/replacen($index,$1,$replacement)/eg;
return $string;
}
my $result = replace_quoted ( $string, 3 ,"PERL");
print "RESULT: $result\n";
有点丑陋的“全局”$ cont变量,可以被抛光,但你明白了。
更新:更紧凑的版本:
use strict;
my $string = "'How can I','use' .... 'perl','to process this' 'line'";
#replace the $index n'th match (1-based counting) from $string by $replacement
sub replace_quoted {
my ($string, $index,$replacement) = @_;
my $cont = 0; # initialize match counter
$string =~ s/'(.*?)'/$cont++ == $index ? $replacement : $1/eg;
return $string;
}
my $result = replace_quoted ( $string, 3 ,"PERL");
print "RESULT: $result\n";
答案 2 :(得分:0)
如果正则表达式并不比您拥有的复制品复杂得多,您可以使用split
跟随编辑和join
:
$line = "'How can I','use' 'PERL','to process this' 'line'";
$n = 3;
$new_text = "'Perl'";
@f = split /('.*?')/, $line;
# odd fields of @f contain regex matches
# even fields contain the text between matches
$f[2*$n-1] = $new_text;
$new_line = join '', @f;
答案 3 :(得分:0)
请参阅perldoc perlvar:
use strict; use warnings;
use Test::More tests => 5;
my %src = (
q{'I want to' 'extract the word' 'PERL','from this string'}
=> q{'I want to' 'extract the word' 'Perl','from this string'},
q{'What about', 'getting','PERL','from','here','?'}
=> q{'What about', 'getting','Perl','from','here','?'},
q{'How can I','use' 'PERL','to process this' 'line'}
=> q{'How can I','use' 'Perl','to process this' 'line'},
q{Invalid} => q{Invalid},
q{'Another invalid string'} => q{'Another invalid string'}
);
while ( my ($src, $target) = each %src ) {
ok($target eq subst_n($src, 3, 'Perl'), $src)
}
sub subst_n {
my ($src, $index, $replacement) = @_;
return $src unless $index > 0;
while ( $src =~ /'.*?'/g ) {
-- $index or return join(q{'},
substr($src, 0, $-[0]),
$replacement,
substr($src, $+[0])
);
}
return $src;
}
输出:
C:\Temp> pw 1..5 ok 1 - 'Another invalid string' ok 2 - 'How can I','use' 'PERL','to process this' 'line' ok 3 - Invalid ok 4 - 'What about', 'getting','PERL','from','here','?' ok 5 - 'I want to' 'extract the word' 'PERL','from this string'
当然,如果传递了无效的$index
或未找到所需的匹配,您需要决定会发生什么。我只是在上面的代码中返回原始字符串。
答案 4 :(得分:0)
重新处理answer to an earlier question,匹配 n -1次,然后替换下一个。记忆模式使可怜的Perl不得不一遍又一遍地重新编译相同的模式。
my $_quoted = qr/'[^']+'/; # ' fix Stack Overflow highlighting
my %_cache;
sub replace_nth_quoted {
my($string,$index,$replace) = @_;
my $pat = $_cache{$index} ||=
qr/ ^
( # $1
(?:.*?$_quoted.*?) # match quoted substrings...
{@{[$index-1]}} # $index-1 times
)
$_quoted # the ${index}th match
/x;
$string =~ s/$pat/$1$replace/;
$string;
}
例如
my $string = "'How can I','use' 'PERL','to process this' 'line'";
print replace_nth_quoted($string, 3, "'Perl'"), "\n";
输出
'How can I','use' 'Perl','to process this' 'line'