Remove default stop words¤
This stop word list filter uses the following list of English stop words as a default.
The removal of stop words is case-insensitive. For example, ‘The’ and ‘the’ are considered the same.
In the case of German words, notice that the upper-case letter of the lower-case ‘ß’ is ‘ẞ’, not ‘SS’.
Should you want to provide your own stop word list, either as a resource (e.g. a file) or a remote URL, see the filters ‘removeStopWords’ and ‘removeRemoteStopWords’.
Examples¤
Notation: List of values are represented via square brackets. Example: [first, second]
represents a list of two values “first” and “second”.
Example 1:
-
Input values:
[To be or not to be, that is the question]
-
Returns:
[To, question]
Example 2:
-
Input values:
[It always seems impossible, until it's done]
-
Returns:
[It impossible, ]
Parameter¤
None
Advanced Parameter¤
None