In case anyone is curious:
'.*' means "any character 0 or more times"
'\s' means "any whitespace character", so that names like "@hungrybotanist" or "@someoneelse" won't be filtered
If you only wanted to filter out "word" but not "words", you could also put a '\s' after that.
Sadly, that WON'T work if it's at the END of a toot, since the ending apparently doesn't count as whitespace. 🤔
There might be a workaround for that, I'll have to look into that.
Thanks to @Baxter for pointing out that using '\b' instead of '\s' also makes it work at the end of toots!
@Tobi Is it using RegEx for filtering? If so, \b means word boundry, so word\b should also get you word but not words.
@Baxter Hey, that works, thanks!
@Tobi Of course! Now I'm wondering if it accounts for the whole RegEx toolset. If so, that's super powerful.
Note that this ONLY mutes toots that CONTAIN these phrases, it does NOT mute USERS 😅