CHARACTER CLASSES
\c = control character
\s = white space
\S = non white space
\d = digit
\D = not digit
\w = word
\W = not word
\xhh =hexadecimal character hh
\Oxxx = octal character xxx
QUANTIFIERS
* = 0 or more
+ = 1 or more
? = 1 or 0
{3} = exactly 3
{3,} = 3 or more
{3,5} = 3, 4 or 5
The simple answer is: We need to monitor more than one thing at a time.
For example, when coding a website in VSCode, you would need to monitor how the website updates in the browser.
reply