| Version 116 (modified by , 3 years ago) ( diff ) |
|---|
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. This is an online tool for testing regular expressions.
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)^.*regards.*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
.* means zero or more of any character
.+ means one or more 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])
^ means start of string (line)
$ means end of string (line)
(?i)^.*regards.*http.*$ matches if "regards" is followed by "http" in the same line, with any number of any characters before, between and after the patterns


