如何用 Perl 中的计算表达式替换?

发布于 2024-09-27 06:08:02 字数 351 浏览 4 评论 0原文

有一个文件 dummy.txt

内容是:

 9/0/2010
 9/2/2010
 10/11/2010

我必须将月份部分(0,2,11)更改为+1,即(1,3,12) 我编写了替换正则表达式,如下所示

 $line =~ s/\/(\d+)\//\/\1+1\//;

它正在打印

9/0+1/2010
9/2+1/2010
10/11+1/2010

如何使其在数字上添加 - 3 而不是执行字符串连接? 2+1??

There's a file dummy.txt

The contents are:

 9/0/2010
 9/2/2010
 10/11/2010

I have to change the month portion (0,2,11) to +1, ie, (1,3,12)
I wrote the substitution regex as follows

 $line =~ s/\/(\d+)\//\/\1+1\//;

It's is printing

9/0+1/2010
9/2+1/2010
10/11+1/2010

How to make it add - 3 numerically than perform string concat? 2+1??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

违心° 2024-10-04 06:08:05

这个怎么样?

$ cat date.txt 
9/0/2010
9/2/2010
10/11/2010
$ perl chdate.pl 
9/1/2010
9/3/2010
10/12/2010
$ cat chdate.pl 
use strict;
use warnings;

open my $fp, '<', "date.txt" or die $!;

while (<$fp>) {
    chomp;
    my @arr = split (/\//, $_);
    my $temp = $arr[1]+1;
    print "$arr[0]/$temp/$arr[2]\n";
}

close $fp;
$ 

How about this?

$ cat date.txt 
9/0/2010
9/2/2010
10/11/2010
$ perl chdate.pl 
9/1/2010
9/3/2010
10/12/2010
$ cat chdate.pl 
use strict;
use warnings;

open my $fp, '<', "date.txt" or die $!;

while (<$fp>) {
    chomp;
    my @arr = split (/\//, $_);
    my $temp = $arr[1]+1;
    print "$arr[0]/$temp/$arr[2]\n";
}

close $fp;
$ 
谁的新欢旧爱 2024-10-04 06:08:04

三处变化:

  • 您必须使用 e 修饰符
    允许表达式
    更换零件。
  • 进行全球替换
    您应该使用 g 修饰符。如果每行只有一个日期,则不需要这一点。
  • 您在替换端使用 $1 ,而不是反向引用

这应该可行:

$line =~ s{/(\d+)/}{'/'.($1+1).'/'}eg;

此外,如果您的正则表达式包含您正在使用的分隔符(在您的情况下为 / ),最好选择不同的分隔符(上面的{}),这样您就不必转义正则表达式中的分隔符,从而使您的正则表达式变得干净。

Three changes:

  • You'll have to use the e modifier
    to allow an expression in the
    replacement part.
  • To make the replacement globally
    you should use the g modifier. This is not needed if you've one date per line.
  • You use $1 on the replacement side, not a backreference

This should work:

$line =~ s{/(\d+)/}{'/'.($1+1).'/'}eg;

Also if your regex contains the delimiter you're using(/ in your case), it's better to choose a different delimiter ({} above), this way you don't have to escape the delimiter in the regex making your regex clean.

月下伊人醉 2024-10-04 06:08:04

这有效:(e 是评估替换字符串:请参阅 perlrequick 文档)。

$line = '8/10/2010';
$line =~ s!/(\d+)/!('/'.($1+1).'/')!e;

print $line;

如果您的正则表达式本身具有 / ,那么使用 ! 或其他字符作为分隔符会有所帮助。


您还可以使用Can Perl string interpolation Perform any expression中的这个问题评估?

$line = '8/10/2010';
$line =~ s!/(\d+)/!("/@{[$1+1]}/")!e;

print $line;

但如果这是一个家庭作业问题,当老师问你如何得出这个解决方案时,准备好解释。

this works: (e is to evaluate the replacement string: see the perlrequick documentation).

$line = '8/10/2010';
$line =~ s!/(\d+)/!('/'.($1+1).'/')!e;

print $line;

It helps to use ! or some other character as the delimiter if your regular expression has / itself.


You can also use, from this question in Can Perl string interpolation perform any expression evaluation?

$line = '8/10/2010';
$line =~ s!/(\d+)/!("/@{[$1+1]}/")!e;

print $line;

but if this is a homework question, be ready to explain when the teacher asks you how you reach this solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文