this post was submitted on 01 Dec 2024
86 points (100.0% liked)

askchapo

22836 readers
200 users here now

Ask Hexbear is the place to ask and answer ~~thought-provoking~~ questions.

Rules:

  1. Posts must ask a question.

  2. If the question asked is serious, answer seriously.

  3. Questions where you want to learn more about socialism are allowed, but questions in bad faith are not.

  4. Try !feedback@hexbear.net if you're having questions about regarding moderation, site policy, the site itself, development, volunteering or the mod team.

founded 4 years ago
MODERATORS
 

I'm imagining as years go by when/if this AI regex code breaks - nobody knows how it works or how to fix it. Am I wrong?

I'm not a programmer and I write shitty code but I can manage to write simple regex to create quick and dirty code. That's a terrible programming choice I know but I never share my code. It's just for me and it works.

you are viewing a single comment's thread
view the rest of the comments
[–] Speaker@hexbear.net 16 points 1 month ago (4 children)

Imagine still using regexes in current year. Every language has a parser combinator library, now, just write a damn parser and stop pretending you remember what a regular language is or that the garbage text you're processing is a sentence in one.

[–] anarchrist@lemmy.dbzer0.com 15 points 1 month ago (1 children)

I'm the sicko doing regex find and replace in notepad++

Looking forward to being able to start a consulting firm when my arcane knowledge is worth a premium

[–] Speaker@hexbear.net 7 points 1 month ago (1 children)

Should add treesitter to your toolbox. Never mind regex-replace when you can exploit the syntax of the actual programming language to do rich query-replace actions. 🌞

[–] anarchrist@lemmy.dbzer0.com 5 points 1 month ago

That's neat! I mostly use regex for like columns of text data. I think most people use excel but I hates it. Nasty little microsofts

[–] stigsbandit34z@hexbear.net 5 points 1 month ago (2 children)

This sounds useful

How do I learn to do it

[–] Speaker@hexbear.net 8 points 1 month ago (2 children)

Read this for a very light introduction to the concept, then type "parser combinator library " into a search engine and never maintain a regular expression again!

[–] TheDoctor@hexbear.net 2 points 1 month ago (1 children)

How does this method handle backtracking? It seems like, as written, those functions wouldn’t handle it

[–] Speaker@hexbear.net 2 points 1 month ago

Some implementations don't support backtracking at all, but ones that do will have combinators like

atomic parserA <|> atomic parserB <|> parserC
-- equivalent to
choice [parserA, parserB, parserC]

where atomic and choice are parsers that take other parsers as arguments like and and or in the article, though the advice is to avoid backtracking whenever possible since it's quite expensive. The little examples in the post are just a taste to make the idea legible, but not really suited for especially interesting parsers.

[–] comrade_pibb@hexbear.net 3 points 1 month ago

I've learned something new today

[–] glans@hexbear.net 3 points 1 month ago

I use regex because I don't know what is a parser combinator library or how to acesss one. Why would i learn how to write a parser when I have a perfectly adequate, portable, thoroughly documented tool available?