- It will match the given pattern exact.
- !Ep8pui8Vw2 will match the tripcode !Ep8pui8Vw2 but not Ep8pu.
+ Сработает только при полном совпадении паттерна и содержимого.
+ Фильтр на !Ep8pui8Vw2 сработает на трипкод !Ep8pui8Vw2, но не на текст Ep8pu.
- These filters are pattern based, and have three modes:
+ Эти фильтры имеют три режима:
- 1. The pattern foo bar will match text that has any of the words in it. It will match foo or bar, but not foobar.
- Placing a * allows any character to be filled in: f*o will match both foo, foooo but not foobar
+ 1. Паттерн foo bar совпадет с текстом, который имеет любое из введенных слов. То есть он сработает на словах foo или bar, но не на foobar.
+ Если поместить знак * вот так f*o, то будут срабатывать случаи foo, foooo, но не foobar
- 2. Quoting your pattern with \" like \"foo bar\" will match the text exactly.
- foo bar matches but foo does not.
+ 2. Паттерн помещенный в \", например \"foo bar\", будет срабатывать только при полном совпадении.
+ foo bar сработает, а foo - нет.
- 3. Regular expressions. /^>implying/ for example.
+ 3. Регулярные выражения. /^>implying/ например.