wiki:BadContent

Version 112 (modified by Michael Koch, 3 years ago) ( diff )

use variable gap length for last two search strings

The regex​ filter reads a list of regular expressions from this page; each regular expression (case sensitive) being on a separate line inside the code block. This uses the ​Python syntax for regular expressions. See also this Wikipedia article or this Regular Expressions Reference. Submitted content will be assigned a negative score (“karma”) for each match, and the total karma determines whether a submission is rejected or not. This is a read only page, so contact a trac admin (see MAINTAINERS) if you want to add something.

(?i)quickbooks
(?i)viagra
(?i)kaspersky
(?i)customer.?support
(?i)customer.?care
(?i)customer.?service
(?i)help.?desk
(?i)help.?line
(?i)contact.?number
(?i)phone.?number
(?i)service.?number
(?i)toll.?free
(?i)great.?for.?FFMEPG.?to.?support.?265
(?i)excavatinghalifax
(?i)concretemoncton
(?i)victoriastairs
(?i)vancouverfabricators
(?i)victoriaheatpumps
(?i)victorialawncare
(?i)retainingnanaimo
(?i)landscapedesignhalifax
(?i)ottawaretainingwalls
(?i)concretevictoria
(?i)concrete.?finishing
(?i)custom.?concrete
(?i)concrete.?solutions
(?i)regards.{0,5}​http
(?i)thanks.{0,5}​http

(?i) means switch to case insensitive

. means any character

? means zero or one of the preceeding character

.? means zero or one of any character

{0,1} means zero or one of the preceeding character, it's the same as ?

{0,} means zero or more of the preceeding character, it's the same as *

{1,} means one or more of the preceeding character, it's the same as +

\s matches all whitespace characters (which includes [ \t\n\r\f\v])

Note: See TracWiki for help on using the wiki.