• katy ✨@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    14
    ·
    6 months ago

    open up google

    search for exactly the result you want

    find an answer on stack exchange that isn’t just “nevermind figured it out”

    copy and paste into your code

  • tetris11@lemmy.ml
    link
    fedilink
    arrow-up
    12
    ·
    6 months ago
    while :; do curl -X POST -d '{"text": "Removed by mod" }' https://lemmy.ml/post/13463433; done
    

    Nothing to see here folks

  • Norgur@fedia.io
    link
    fedilink
    arrow-up
    13
    arrow-down
    1
    ·
    edit-2
    6 months ago

    Coworker: “Hey, I got this really cool new tool that will solve this data filtering problem you had” Me:: “Cool! Let me check out the filters!” Coworker. “They are awesome and work by RegEx!” Me: “Nope, not interested.” Coworker: “But… it fits your needs exactly” Me: “I. said. NOT. INTERESTED!”

    • Digital Mark@lemmy.ml
      link
      fedilink
      English
      arrow-up
      8
      ·
      6 months ago

      There’s other, more verbose, regular expression languages, for instance SRFI-115 for Scheme. But the hard part isn’t the syntax, but actually thinking about patterns, so it won’t help you any.

      Just get the O’Reilly bat book and learn. So what if it overwrites 10% of your brain and you can’t remember your mother’s face, you’ll have a useful skill.

  • stewie410@programming.dev
    link
    fedilink
    arrow-up
    3
    ·
    6 months ago

    I don’t know all of the regex rules (look ahead/behind, etc); but it’s honestly not that bad. If you can learn the syntax for a programming language, you can learn the basics of regex…

    • ☆ Yσɠƚԋσʂ ☆@lemmy.mlOP
      link
      fedilink
      arrow-up
      2
      arrow-down
      3
      ·
      6 months ago

      Sure, learning basics of regex is not that hard, but complex regex expressions can easily become impenetrable. I actually like the verbal expressions idea where you write out the regex using a long form and that gets compiled into the actual regex, e.g:

      const tester = VerEx()
          .startOfLine()
          .then('http')
          .maybe('s')
          .then('://')
          .maybe('www.')
          .anythingBut(' ')
          .endOfLine();
      

      That seems like the best of both world approach to me.

      • stewie410@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        6 months ago

        My brief experience with LINQ has also taught me to prefer this type of thing as well; though I still use regex on a daily basis most of the time, given my environment.

  • CCF_100
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    5 months ago

    Hey ChatGPT, here’s an example string, how would you get this string out of it with <insert regex implementation>?