Changes between Version 114 and Version 115 of BadContent


Ignore:
Timestamp:
Oct 20, 2023, 11:03:44 AM (3 years ago)
Author:
Michael Koch
Comment:

add a new search pattern, and more documentation

Legend:

Unmodified
Added
Removed
Modified
  • BadContent

    v114 v115  
    3232(?i)regards.{0,5}​http
    3333(?i)thanks.{0,5}​http
     34(?i)^.*regards.*http.*$
    3435}}}
    3536
     
    4243.? means zero or one of any character
    4344
     45.* means zero or more of any character
     46
     47.+ means one or more of any character
     48
    4449{0,1} means zero or one of the preceeding character, it's the same as ?
    4550
     
    4954
    5055\s matches all whitespace characters (which includes [ \t\n\r\f\v])
     56
     57!^ means start of string (line)
     58
     59$ means end of string (line)
     60
     61(?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