|
Filter_Stopwords ( Text )
Rate this function: Average rating: 5.0 (1 vote)Thomas Seidler, The Good Book Company
http://www.harmlesswise.com/it
simple one function stopwords remover
Sample Input:
Let(
text = "The Good and Book of Company";
Filter_Stopwords ( text )
& "¶" &
Filter_Stopwords ( lower(text) )
) |
|
Sample Output:
"The Good Book Company
good book company"
// i.e. capitalized stopwords stay in, unless you use 'lower' on text |
|
Description:
Removes stopwords [a very long list provided via a uni] from text. Defaults to only removing lower case stopwords, so fairly simple.
Note: these functions are not guaranteed
or supported by BrianDunning.com. Please contact the individual
developer with any questions or problems.
This is my Custom Function and I want to
edit it
|
Newest Custom Functions:
| 1. |
array.cellValueByColTitle (array ; rowName ; column ; delimiter ; useTitle ) |
| |
(Mon, Jan 05, 5:39pm) |
| 2. |
array.cellValueByColNum ( array ; rowName ; column ; delimiter ) |
| |
(Mon, Jan 05, 11:09am) |
| 3. |
EmailName ( account ) |
| |
(Fri, Jan 02, 7:46pm) |
| 4. |
GetFileName ( FullName ) |
| |
(Tue, Dec 30, 1:46pm) |
| 5. |
Intersection Set ( ListA ; ListB ) |
| |
(Mon, Dec 29, 7:32pm) |
| 6. |
NumberFormat ( Number ; DecimalPrecision ; ThousandSeparator ) |
| |
(Wed, Dec 17, 1:23pm) |
| 7. |
SwitchList ( ListA ; ListB ; CaseSensitive ) |
| |
(Wed, Dec 17, 3:28am) |
| 8. |
RandomList ( ListToRandom ) |
| |
(Wed, Dec 17, 2:50am) |
 |
|