子程序中的 Perl 特殊变量“@_”不起作用

Perl special variable "@_" in a subroutine not working

此脚本从下载的网页中删除 url。我在使用此脚本时遇到了一些问题 - 当我使用 "my $csv_html_line = @_ ;" 然后打印出 "@html_LineArray" - 它只打印出 "1's"。当我更换 "my $csv_html_line = @_ ;""my $csv_html_line = shift ;" 脚本工作正常。 我不知道 "= @_" and shift 之间有什么区别 - 因为我认为 不指定任何东西,在子例程中,shift shift froms "@_".

#!/usr/bin/perl
use warnings;
use strict ;

sub find_url {
    my $csv_html_line = @_ ;
    #my $csv_html_line = shift ;
    my @html_LineArray = split("," , $csv_html_line ) ;
    print "@html_LineArray\n" ;
    #foreach my $split_line(@html_LineArray) {
    #    if ($split_line =~ m/"adUrl":"(http:.*)"/) {
    #        my $url = ;
    #        $url =~ tr/\//d;
    #        print("$url\n")  ;
    #    }
    #}
}



my $local_file = "@ARGV" ;
open(my $fh, '<', "$local_file") or die "cannot open up the $local_file $!" ;
while( my $html_line = <$fh>) {
    #print "$html_line\n";
    find_url($html_line) ;
}

这就是上面打印出来的内容。

1
1
1
1
1
1
1
1
1
1
1
1

这很好用 - 它使用 shift 而不是“@_”

#!/usr/bin/perl
use warnings;
use strict ;

sub find_url {
    #my $csv_html_line = @_ ;
    my $csv_html_line = shift ;
    my @html_LineArray = split("," , $csv_html_line ) ;
    #print "@html_LineArray\n" ;
    foreach my $split_line(@html_LineArray) {
        if ($split_line =~ m/"adUrl":"(http:.*)"/) {
            my $url = ;
            $url =~ tr/\//d;
            print("$url\n")  ;
        }
    }
}



my $local_file = "@ARGV" ;
open(my $fh, '<', "$local_file") or die "cannot open up the $local_file $!" ;
while( my $html_line = <$fh>) {
    #print "$html_line\n";
    find_url($html_line) ;
}

my ($csv_html_line) = @_ ;

您编写代码的方式是在标量上下文中评估 @_ 并获得其长度(元素数)。如您所述,

my $csv_html_line = shift;

之所以有效,是因为 shift 运算符接受一个列表并删除 returns 第一个元素作为标量。

你需要

my ($csv_html_line) = @_ ;

因为将数组分配给标量将 return 它的长度(即 1 和一个参数)