I'm trying to do something like this in Open/Google Refine:
forEach(["foo", "bar"], regex, value.match(/.*(regex).*/))
That is loop an array of keywords to check if the cell contains any of them. How can I use these keywords to build regular expressions?
Any ideas?