Greetings,
I am cleaning data in a very large dataset, and would want to drop all records in a specific variable (dosage_text) which have the word "prevention" located anywhere in the that variable (despite being capital letter or small). In the below example, the word prevention is the last word in text, but there are other instances where prevention is located first or middle. I just want to drop all records of prevention.

This is for illustration:

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input str71 dosage_text
"ONE DAILY -HEART DISEASE/STROKE PREVENTION"                  
"ONE OR TWO UP TO FOUR TIMES A DAY FOR SEVERE PAIN"           
"ONE TO BE TAKEN ONCE DAILY - HEART DISEASE/STROKE PREVENTION"
"ONE DAILY -HEART DISEASE/STROKE PREVENTION"                  
"TWO TO BE TAKEN FOUR TIMES DAILY FOR PAIN"                   
""                                                            
"ONE TO BE TAKEN ONCE DAILY - HEART DISEASE/STROKE PREVENTION"
end

I would very much appreciate if you can please guide me to the commands for that, as I couldn't figure it out.