質問

While reading from a configuration file in Perl there might be cases when a line is invalid and it does not need to get added to my array of valid lines. Since I'm using a for loop here, even the invalid lines create an undef entry. How can I remove all them afterwards?

Thanks!

役に立ちましたか?

解決

@array = grep defined, @array;
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top