Partial string matches for hashtags
Shawn Hoffman
Currently, we're able to filter with hashtags using in and not_in logic but it would be nice if there were an option to match a partial tag whether through entity_list or word_list with a hashtag option.
Example: 'spoiler'. Users tend to tag posts like #arcanespoilers or #criticalrolespoiler so it would be helpful to be able to easily capture all of these.
Andrew Lisowski
That's where the regex filter comes it. The "world list" node is really just a fancy what to define a regex
For your case here i think the following would work
\b#.*spoiler\b
\b
- Denotes a word boundary#
- the hash tag.*
- match some lettersspoiler
- match the word spoiler\b
- End of word