in reply to Embed empty value using qw()

You could use
map { $_ ne 'NULL' && $_ } qw(one two NULL four five)
since && returns an empty string if the first condition is false.