Here is my scenario. I want to get a file name from Google Drive and check it against a list of words. If one or more of those words appears in the list, I’d like remove them and update the filename.
I’ve considered splitting the filename string into an array itself and then iterating and looping a manual check of each word in array-1 against each word in array-2…but array-2 (the word list) has 75 words in it, so it would get operationally expensive VERY quickly. I feel like there’s go to be a better way.
Thanks in advance for your help!