The table supports a filter mechanism. Activation/Deactivation by symbol "Downside arrow" in right upper corner.
...
input | desc | regex | matching | not matching |
---|---|---|---|---|
Ad | equals 'Ad' | /^Ad.*/g | Ad | admin, monica |
Ad* | startswith 'Ad' | /^Ad.*/g | Admin, Add | admin, monica |
*Ad | endswith 'Ad' | /.*Ad$/g | mkisdAd | mkdisad, youtube |
*Ad* | contains 'Ad' | /.*Ad.*/g | mmAdkias,mmAd | admin, monica |
*Ad*s* | contains 'Ad' something 's' something | /.*Ad.*s.*/g | Admins, Ads | Admin, admins |
?Ad?s* | Single any char'Ad' single any char 's' something | /.Ad.s.*/g | fAdhs, gAdis | Admin, admins |
>19 | number greater than 19 (since frankfurt) | - | 20,3300 | 1, 11 |
<=22 | number smaller or equal than 22 (since frankfurt) | - | 1, 21, 22 | 23, 553 |
The rules are described in column “regex” to be tested with Flavor “ECMAScript” regex at this site: https://regex101.com/
Examples for filtered row in table
...