A character string of interest can either be 'there are five apples' or 'there are five APPLES'
strsplit(string, c('apples', 'APPLES'))
So I want to split by either apples or APPLES because I don't know if the string is going to have lower case or uppercase letters. But I tried the code above and it didn't work.