Skip to content

bigfunctions > remove_words

remove_words

Signature

remove_words(string, words_to_remove)

Description

Remove any word of words_to_remove from string

Examples

select bigfunctions.eu.remove_words('I can eat candies', ['can', 'eat'])
select bigfunctions.us.remove_words('I can eat candies', ['can', 'eat'])
select bigfunctions.europe_west1.remove_words('I can eat candies', ['can', 'eat'])
+----------------+
| cleaned_string |
+----------------+
| I  candies     |
+----------------+