- It will match the given pattern exact.
- !Ep8pui8Vw2 will match the tripcode !Ep8pui8Vw2 but not Ep8pu.
+ Il pattern viene cercato nella sua interezza.
+ !Ep8pui8Vw2 troverà il tripcode !Ep8pui8Vw2 ma non Ep8pu.
- These filters are pattern based, and have three modes:
+ Questi filtri sono basati sui pattern e hanno tre modalità:
- 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. Il pattern foo bar troverà ogni testo che contiene una o più delle parole specificate. Troverà foo o bar, ma non foobar.
+ Un asterisco (*) permette l'aggiunta di qualunque carattere: f*o troverà sia foo, sia foooo, ma non foobar
- 2. Quoting your pattern with \" like \"foo bar\" will match the text exactly.
- foo bar matches but foo does not.
+ 2. Mettere il pattern tra virgolette come in \"foo bar\" troverà il testo nella sua interezza.
+ foo bar viene trovato, foo no.
- 3. Regular expressions. /^>implying/ for example.
+ 3. Espressioni regolari (regex). /^>implying/, per esempio.