this post was submitted on 16 Jul 2023
249 points (92.8% liked)

Programming

17024 readers
256 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
you are viewing a single comment's thread
view the rest of the comments
[–] fubo@lemmy.world 17 points 1 year ago (1 children)

Sure, but can it go the other way — turn a regexp string into a parse tree and then into Melody syntax?

Or, at least, the equivalent of CL-PPCRE's parse-string?

[–] yoavlavi@programming.dev 19 points 1 year ago (1 children)

That's not supported yet but is planned (see the "reverse compiler" feature in the README)

[–] Die4Ever@programming.dev 17 points 1 year ago (2 children)

sounds like it would make an amazing VSCode extension

[–] yoavlavi@programming.dev 8 points 1 year ago

Awesome idea, will definitely take it into consideration when that feature is available. Melody actually has a VSCode extension with highlighting and snippets, could be added to that

[–] Grandwolf319@sh.itjust.works 2 points 1 year ago (1 children)

Yeah, I think it makes little sense to have another programming language to create a regex but it sounds like a great regex inspect tool.

Keep everything in regex, want to change something complicated? You can translate it into this language, tweak it, then translate it back!

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

maybe it makes sense if you're working on a project that uses a ton of different regexes and really depends on them, idk what kind of project that would be though

maybe an html parser or web browser? /s

seriously though this would be cool in a compiled language if it's built in, but adding another build step to transpile your regexes might be a bit annoying especially if you're using an interpreted language

[–] Deely@programming.dev 1 points 1 year ago

It make sense in any project that created by more than one person I suppose.