Subtracts one or more substrings from a base text, i.e. ["Hello world","World"] would yield "Hello".
Column containing the text to subtract from
InputColumn<String> RequiredShould substring matching be case-sensitive or not?
boolean RequiredIf set, only whole words (surrounded by whitespace or punctuation) will be removed.
This prevents removing partial words.
boolean OptionalColumns containing the substrings to remove from the base text
List of InputColumn<Object> Required