• Akito@lemmy.zip
    link
    fedilink
    English
    arrow-up
    14
    ·
    1 day ago

    It’s not about the syntax itself, it’s about which syntax to use. There are different ones and remembering which one is for which language is tough.

    • Lehmanator@programming.dev
      link
      fedilink
      English
      arrow-up
      2
      ·
      56 minutes ago

      This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

      The hardest part is remembering whether you need to use \w or [:alnum:].

      Way too few utils actually mention which syntax they use too. Most just say something accepts a “regular expression”, which is totally ambiguous.

    • Lehmanator@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      56 minutes ago

      This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

      The hardest part is remembering whether you need to use \w or [:alnum:].

      Way too few utils actually mention which syntax they use too. Most just say something accepts a “regular expression”, which is totally ambiguous.

    • Lehmanator@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      57 minutes ago

      This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

      The hardest part is remembering whether you need to use \w or [:alnum:].

      Way too few utils actually mention which syntax they use too. Most just say something accepts a “regular expression”, which is totally ambiguous.

    • Lehmanator@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      57 minutes ago

      This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

      The hardest part is remembering whether you need to use \w or [:alnum:].

      Way too few utils actually mention which syntax they use too. Most just say something accepts a “regular expression”, which is totally ambiguous.

      • ewenak@jlai.lu
        link
        fedilink
        arrow-up
        1
        arrow-down
        1
        ·
        1 day ago

        There is the “very magic” mode for vim regexes. It’s not the exact PCRE syntax, but it’s pretty close. You only need to add \v before the expression to use it. There is no permanent mode / option though. (I think you can remap the commands, like / to /\v)