I have tried numerous regexs in an attempt to solve this issue but I cannot solve it. As the title suggests I am tempting to extract everything in a string except for a keyword that I know will/could be located in the string. I am using https://regex101.com/ to test my regex's. The sample strings are below.
"Job Care Worker"
"+jobs +Nurse"
"construction worker"
I've tried using a negative lookahead such as ^((?![jJ]ob).)*$
but if I plug this into https://regex101.com/, with my test strings, I am unable to remove the word Job. That is essentially my end goal here, remove the word jobs from the string.