• spartanatreyu@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      There are some tools/libraries that act as a front-layer over regex.

      They basically follow the same logic as ORMs for databases:

      1. Get rid of the bottom layer to make some hidden footguns harder to trigger
      2. Make the used layer closer to the way the surrounding language is used.

      But there’s no common standard, and it’s always language specific.

      Personally I think using linters is the best option since it will highlight the footguns and recommend simpler regexes. (e.g. Swapping [0-9] for \d)