Could we help you? Please click the banners. We are young and desperately need the money
In this guide, I'll introduce you to RegEx.
RegEx stands for 'Regular Expression'. It is used to make search patterns.
This is an example of a very basic RegEx filter, it will select every occurrence of 'word' in the target string:
/word/g
It consists of two delimiters, in this case we use slashes ('/'), the content (the filter pattern) between them, which is what we filter by and the flags after the delimiters, which configure the filter.
RegEx Tokens can be utilized in the filter pattern.
Following Tokens, but not limited by, are available (at least in JavaScript). Here's a collection with examples and explanations:
Like mentioned before, flags can configure how your filter works. The following flags are available (at least in JavaScript):