[已解决][求助]如何做如下字串切分?

perl -ne "print if 1../__END__/" ttt.pl
又看到用for的判断。顺便学习。


[Copy to clipboard] [ - ]
CODE:
#!/usr/bin/perl
use warnings;
use strict;

my $date="abc;efg;ddd; fdd";

while ($date=~/^([^;]+;( +[^;]*)*)/){
$date=$';
print $1."\n";
}

零宽度断言,呵呵,好东西,我要多看看咯。。。