Changes between Version 110 and Version 111 of BadContent


Ignore:
Timestamp:
Oct 19, 2023, 1:11:40 PM (3 years ago)
Author:
Michael Koch
Comment:

add a few regex syntax examples

Legend:

Unmodified
Added
Removed
Modified
  • BadContent

    v110 v111  
    4040.? means zero or one of any character
    4141
     42{0,1} means zero or one of the preceeding character, it's the same as ?
     43
     44{0,} means zero or more of the preceeding character, it's the same as *
     45
     46{1,} means one or more of the preceeding character, it's the same as +
     47
    4248\s matches all whitespace characters (which includes [ \t\n\r\f\v])