Changes between Version 110 and Version 111 of BadContent
- Timestamp:
- Oct 19, 2023, 1:11:40 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BadContent
v110 v111 40 40 .? means zero or one of any character 41 41 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 42 48 \s matches all whitespace characters (which includes [ \t\n\r\f\v])
