How would I kill my bash script if the user doesn't add anything on their prompt but just hits enter?

Would I use if or case? I'm not quite sure how I would go about it since the field is empty and I have no idea how to define empty.


Edit:
I was finally able to google my way to the answer.

It worked with"

if [ -z $string ]