Run the following from a command line, or create it in a script:
>find . -name *.zip | while read file
>do
> echo "Checking archive name: ${file}"
> echo "==============================="
> unzip -l "$file" | grep SEARCH_STRING
>done