stringr package provides good string functions.
To search for a string (ignoring case)
one could use
stringr::str_detect(\'TOYOTA subaru\',ig
the search string must be inside function fixed and that function has valid parameter ignore_case
fixed
str_detect('TOYOTA subaru', fixed('toyota', ignore_case=TRUE))