you are viewing a single comment's thread
view the rest of the comments
[–] 1 point 2 years ago* (1 child)

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

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 2 years 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)

  • source
  • parent