• Dropkick3038@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    2 months ago

    regexes are a well established solution for parsing strings. what exactly is the “proper” alternative you propose?

    • spartanatreyu@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      2 months 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)