in reply to Re^2: using grep to find a word
in thread using grep to find a word

@foo_d = grep(/""/, @arr);

Not working because you are looking for two double quotes instead of one double quote. If you want a double quote at the start of your string:

@foo_d = grep(/^"/, @arr);