You can use the grep command in one of the following ways to find the number of occurrences of a string in a zipped file.
zcat zipped_file_name | grep "string" | wc -l
or
zcat zipped_file_name | grep -c "string"