当前位置:主页 > 脚本语言 > perl >

使用 use re debug 查看正则表达式的匹配过程

时间:2022-02-03 10:32:10 | 栏目:perl | 点击:

复制代码 代码如下:

#!/usr/bin/perl
use strict;
use warnings;
use re 'debug';
sub test {
    my $str = "123456789";
    print join(":", split /(?<=...)/, $str);
}
test();

您可能感兴趣的文章:

相关文章