this post was submitted on 09 Jul 2023
247 points (94.6% liked)

Programming

17025 readers
127 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

I have to use a ton of regex in my new job (plz save me), and I use ChatGPT for all of it. My job would be 10x harder if it wasn't for ChatGPT. It provides extremely detailed examples and warns you of situations where the regex may not perform as expected. Seriously, try it out.

you are viewing a single comment's thread
view the rest of the comments
[–] porksoda@lemmy.world 8 points 1 year ago (1 children)

The new Code Interpreter plugin that went live for this week for Plus users can actually execute Python code on a sandboxed environment. This allows you to add "Write and execute tests for the regex" to the end of your prompt.

[–] larlyssa@lemmy.world 15 points 1 year ago* (last edited 1 year ago) (3 children)

Regex101 is a sandbox env specifically for Regex

[–] coloredgrayscale@programming.dev 5 points 1 year ago* (last edited 1 year ago)

Not just for writing, and testing samples. It will also explain the parts of the regex.

However it won't generate examples that will pass the regex - which may be the biggest benefit of chatGPT.

This is the way. Everything ChatGPT produces for me gets tested and debugged here.

This is where I go to validate the work of ChatGPT. The debugging capabilities in that site are wonderful.