Other resources

Regexes are pretty well known, if what i’m handwaving at is of interest, here’s some other places to read:

My demo rig

here’s the nukescript (7kb) a screenshot of my regex rig

that cheat sheet i was writing up

positional anchor
   ^        start of text
   $        end of text

wildcard
   .        literally whatever

how many? (aka: quantifiers)
   +        1 or more (of the thing before it)
   *        0 or more (of the thing before it)
   ?        0 or 1    (of the thing before it)

groups
  (aaa|bbb|ccc)   aaa OR bbb OR ccc

classes
  [abc]     anything in the class 'abc' (so basically, a or b or c)
  [^abc]    anything OTHER than class 'abc' (so basically, a or b or c)

shortcuts
  [a-z]     all lowercase
  [A-Z]     all uppercase
  [0-9]     all numbers