Boost your pattern-matching skills with Silent Push’s unique regex twist. Unlike standard regex, our version is tailored for fuzzy matching—perfect for catching similar patterns without exact matches.
Here’s how to master it:
Swap Like a Pro: Replace
*
with{0,}
, + with{1,}
, and?
with(<term>l)
for flexible matches.Character Cheat: Swap
\w
for[a-zA-Z0-9]
and\d
for[0-9]
to target alphanumerical or numerical sets.Escape Hack: Skip escaping
.
,-
,^
, and$
—they’re handled automatically!Example: Use
www.[a-zA-Z0-9]{1,}.xyz
to snag domains likewww.malserver7.xyz
with ease.
Normal Regex | Silent Push Regex | Operation | Example Swap |
---|---|---|---|
|
| 0 or More |
|
|
| 1 or More |
|
|
| Zero or 1 |
|
|
| Alphanumerical |
|
|
| Numerical |
|
|
| Literal Dot |
|
|
| Literal dash |
|
|
| Start |
|
|
| End |
|
Practical Tricks
Normal Regex | Silent Push Regex | Example Match | What it does |
---|---|---|---|
|
|
| Grabs |
|
|
| Targets |
|
|
| Matches numeric domains with any TLD. |
|
|
| Finds |
|
|
| Spots |
|
|
| Nabs |
|
|
| Includes |
|
|
| Matches numeric |
|
|
| Grabs all |