Please enable JavaScript.
Coggle requires JavaScript to display documents.
Ch 10.1-10.2 (RegEx (Regular expressions, Examining text, commands, \w =…
Ch 10.1-10.2
RegEx
Regular expressions
Examining text
commands
\w = any alphanumeric character
period . = greatest scope
\S = anything but whitespace
\s whitespace
[] = specific character combos, like 3 or a 7
[^] = anything but alpha.
303|720 = will capture both area codes
ab* = a and b infinite amount of times
ab+ = a plus at least one b
WEBSITE THAT works with this to help = regex.com
If-then statements
Formulas
Can change info based on parameters
Can be used to sort
CH 10.1 has tables of commands(print out later)