在其他语言中,我使用像Erlang和Python,如果我分割一个字符串,而不关心其中一个字段,我可以使用一个下划线占位符。我在Perl中尝试过:
(_,$id) = split('=',$fields[1]);@H_502_4@但我得到以下错误:
@H_502_4@Can’t modify constant item in list assignment at ./generate_datasets.pl line 17,near “);”@H_502_4@Perl有类似的这样的模式,我可以使用而不是创建一个无用的临时变量?
Execution of ./generate_datasets.pl aborted due to compilation errors.
解决方法
undef在Perl中具有相同的用途。
(undef,$something,$otherthing) = split(' ',$str);