in reply to Re^2: How to grep for a filename for each of the keys of a hash
in thread How to grep for a filename for each of the keys of a hash

push @array = grep (/\Q$file_name\E/i, keys %pathname_versions);

I am getting the below error when the above piece of code is executed,what does it mean?

Type of arg 1 to push must be array (not list assignment)

Replies are listed 'Best First'.
Re^4: How to grep for a filename for each of the keys of a hash
by k_manimuthu (Monk) on Dec 13, 2010 at 06:34 UTC
    my @array = grep (/\Q$file_name\E/i, keys %pathname_versions);

    That's the right thing.

Re^4: How to grep for a filename for each of the keys of a hash
by Anonymous Monk on Dec 13, 2010 at 06:35 UTC
    s/ =/,/ in that code.