我想在另一行写 $1 进行替换;
my $converting_rules = +{
'(.+?)' => '$1',
};
my $pre = $converting_rule_key;
my $post = $converting_rules->{$converting_rule_key};
#$path_file =~ s/$pre/$post/; // Bad...
$path_file =~ s/$pre/$1/; // Good!
在 Bad 上,$1 被识别为字符串 '$1'。但我 wqnt 来对待它匹配的字符串。我不知道该怎么做...请帮助我!