Anonymous ID: 5d5eba July 6, 2018, 9:30 p.m. No.2064946   🗄️.is 🔗kun

Resurrected from the old thread

 

Muh P

(([["]?[pP][]"]?)\s(([Ii][Ss]\s+[fF][oO][rR]|[iI][sS]|[aA][rR][eE]|[bB][eE])\s+([tT][Hh][eE])?|(=))\s[["]?pP[]"]?)|(([["]?[pP][]"]?)\s(([Ii][Ss]\s+[fF][oO][rR]|[iI][sS]|[aA][rR][eE]|[bB][eE])\s+([nN][oO][Tt])|([!][=]))\s([tT][Hh][eE])?\s*[["]?[pP][oO][pP][eE][]"]?)

 

Muh R

([Ff][Oo][Rr]\s|[Oo][Ff]\s)?Rr?[,]?\s

 

Muh LARP

(Q\s([iI][sS])\s([Ff][aA][kK][eE])|([Aa]?\s([lL][aA][rR][pP])))

 

Muh Drumpf

([FfDd]rRmM?(f)?)

 

Muh FE

(([['"]?)([Ff][Ll][Aa][Tt]|[cC][uU][rR][vV][eE][dD]|[hH][oO][lL][lL][oO][wW]|[iI][nN][nN][eE][rR])([]'"]?)\s([['"])?([Ee][aa][rR][tT][hH]|[sS][pP][hH][eE][rR][eE])([]'"])?\s)|(([['"])?([Ee][aa][rR][tT][hH]|[sS][pP][hH][eE][rR][eE])([]'"])?\s([iI][Ss])?\s([['"]?)([Ff][Ll][Aa][Tt]|[cC][uU][rR][vV][eE][dD]|[hH][oO][lL][lL][oO][wW]|[iI][nN][nN][eE][rR])([]'"]?)\s*)

 

Muh Filters

(([Q]\s+[Ss][Aa][Ii][Dd]\s+)?([Nn][Oo]|[Dd][Oo]\s?Nn[Tt])\s+[Ff][Ii][Ll][Tt][Ee][Rr][Ss]?)

 

Muh Joo / Stormfagging

(Jj|[Kk][Ii][Kk][Ee]|[Zz][Ii][Oo][Nn][Ii][Ss][Tt]|Jj([fF]|[Dd]))

 

Muh AJ/Corsi

([Aa][Ll][Ee][Xx]\s*[Jj][Oo][Nn][Ee][Ss]|AJ)|[Cc][Oo][Rr][Ss][Ii]|[Ii][Nn][Ff][Oo][Ww][Aa][Rr][Ss]

 

Muh Bot

[].?=,e

 

Muh Leaf

[Aa][Nn][Tt][IiyYEe][Ff][UuAaEeOo][Nn][Gg][AaEeOoUuIiYy][Ll][AaEeOoUuIiYy]?([Ll][AaeEIiOoUuYy][Ff])?([Bb][Rr][AaEeIiOoUuYy][Dd])?

 

Muh Comped Bread

(([Cc][Oo][Mm][Pp][Ee]?[Dd]?)?Bb?Rr?[Dd]\s(([Hh][Aa]|['Ii])?[Ss])?\s([Bb]Ee?)?\s*([Cc][Oo][Mm][Pp][Ee]?[Dd]?)?)

Anonymous ID: 5d5eba July 6, 2018, 9:33 p.m. No.2064964   🗄️.is 🔗kun

Build your own

 

  1. All of these expressions are built around character classes. Character classes are a grouping which will match exactly a single character out of the class.

 

Some characters need to be escaped (obviously the [ and the ] characters) or they will interfere. To escape the character prepend a \

 

For example:

 

[ABC] matches a single letter of A, B, or C (but not a,b or c).

 

[[]] matches [ or ]

 

  1. A grouping processes a chunk of letters together. This is useful for optional matches and debugging. You can of course have groups within other groups.

 

For example:

 

(cat)|([Dd]og)

 

will match, cat, Dog and dog

 

  1. The following symbols denote the number of matches in a group or subgroup

 

    • 0 to infinity

 

    • 1 to infinity

 

? - 0 to 1

 

{number} - exactly the number of matches

 

{min, max} - between min and max matches.

 

For example:

 

Cats?|Dogs?

 

will match Cat, Cats, Dog and Dogs.

 

Frogs*

 

will match Frog, Frogs, Frogss, Frogsss and so on

 

(Frogs)+

 

will match Frog, FrogsFrogs, FrogsFrogsFrogs and so on.

 

  1. The following symbols have special meaning.

 

. - matches any character

 

\s - matches any space

 

\w - matches any word character

 

For example:

 

.* - matches any number of any characters.

 

\w* - matches any number of non-space characters.

 

\s* - matches any number of spaces.

 

\s+ - at least one space.

Anonymous ID: 5d5eba July 6, 2018, 9:35 p.m. No.2064984   🗄️.is 🔗kun

Link to old thread so you don't have to dig through the archive to find it. (At least until this one falls off again)

 

https://8ch.net/qresearch/res/1510286.html