⬅️ Execute Program RegEx
Basic character sets
- That was shorter, but still wordy. We can specify an entire range of characters by using
-
.
- Character sets can be negated to mean “everything not in the set”. (
^
)
- Normally it means “beginning of line”. But inside
[]
, it means “negate the character set”.
- Character sets match exactly one character in the string (use
*
pr +
for more)