Say that I have this text
I need to think of something to write here. I am an alumni of the college. The blue cat is blue the red cat is red.
I want to be able to select everything if the word "student" (ignoring case) does NOT exist in the text. Therefore, I need something to go beyond the first line. I originally had something like
/(?:[^student]).*/
but it isn't working correctly. I am not sure what "flavor" of Regex I am using but it is with PHP and in the backend of a Drupal site.
Thank you!