25
top 34 comments
sorted by: hot top controversial new old
[-] expr@programming.dev 20 points 1 month ago

Every day pretty much with Unix tools. Vim, awk, sed, etc.

[-] borup@programming.dev 13 points 1 month ago

Usually many times a day... Even today which have been mostly meetings.

Yesterday. Gotta grep those logs.

[-] Dropkick3038@programming.dev 9 points 1 month ago
[-] spartanatreyu@programming.dev 8 points 1 month ago* (last edited 1 month ago)

At least once every few days while coding, usually to do one of the following:

  1. Select multiple things in the same file at the same time without needing to click all over the place

    Normally I use multicursor keyboard shortcuts to select what I want and for the trickier scenarios there are also commands to go through selections one at a time so you can skip certain matches to end up with only what you want.

    But sometimes there are too many false matches that you don't want to select by hand and that's where regex comes in handy.

    For instance, finding:

    • parent but not apparent, transparent, parentheses, apparently, transparently
    • test but not latest, fastest, testing, greatest, shortest
    • trie but not entries, retries, countries, retrieve
    • http but not https

    ... which can be easily done by searching for a word that doesn't include a letter immediately before or immediately after: e.g. \Wtest\W.

  2. Search for things across all files that come back with too many results that aren't relevant

    Basically using the same things above.

  3. Finding something I already know makes a pattern. Like finding all years: \d{4}, finding all versions: \d+\.\d+\.\d+, finding random things that a linter may have missed such as two empty lines touching each other: \n\s*\n\s*\n, etc...

Yesterday, for capturing URLs.

[-] kionite231@lemmy.ca 3 points 1 month ago

https?//[a-zA-Z0-9_-]*

I am kinda learning RE right now ๐Ÿ˜…

What about ftp? ๐Ÿค”

[-] kionite231@lemmy.ca 1 points 1 month ago

If we want to include every protocol then the RE could be complex.

[-] sukhmel@programming.dev 1 points 1 month ago

Depending on the use-case it maybe should. On the other hand, some things are better left to library implementations rather than custom regex, e.g. email validation

[-] lud@lemm.ee 6 points 1 month ago

A few hours ago.

I just wanted to make a list of AD group names into a powershell array.

[-] Oneironaut21@ani.social 6 points 1 month ago

On average I've probably had to work with them or write one from scratch only a handful of times per year over my career. Not often enough to be an expert or anything but I'm not so afraid of them as I used to be.

[-] NostraDavid@programming.dev 6 points 1 month ago

Yesterday, when I had a file with a list of JSON objects, and I wanted to move the date field at the end to the beginning, so I used regex find and replace to move it. Something like \{(.*?), ("date": ".*?") in Search, and then {$2, $1 in replace (or something close to it).

Yes, I refactor code and data using regex. I can't be arsed to learn AWK (even though I should).

[-] kionite231@lemmy.ca 3 points 1 month ago

AWK doesn't work with json IIRC. You have to use jq to deal with json.

[-] NostraDavid@programming.dev 1 points 1 month ago

While yes, the way I had it structured looked like a CSV if you squinted a little, I do fully agree AWK can't be used for just any old JSON.

jq is dope, but that language still feels pretty confusing IMO.

[-] corsicanguppy@lemmy.ca 6 points 1 month ago

This sentence is the uncanny valley for structure.

[-] lysdexic@programming.dev 5 points 1 month ago

Asking this question is like asking when was the last time you had to search through text.

[-] bitcrafter@programming.dev 5 points 1 month ago

I don't always use regular expressions, but when I do, I use it to parse XML,

[-] kionite231@lemmy.ca 4 points 1 month ago

iirc using RE to parse tag languages is not recommended.

[-] bitcrafter@programming.dev 11 points 1 month ago

Sure, but if you are not regularly expressing code that has the potential of summoning elder gods that will swallow your soul into a dimension of ceaseless screaming then are you really living?

[-] Thcdenton@lemmy.world 4 points 1 month ago

Writing the script that got me fired

[-] verstra@programming.dev 4 points 1 month ago

Please explain more! What happened?

Did you destroy a database? Expose credentials? Nuke the company intentionally?

[-] kionite231@lemmy.ca 3 points 1 month ago

I hope you are joking

[-] towerful@programming.dev 4 points 1 month ago

Interesting to see a lot of these responses (so far) are workflow related instead of being used in production.

[-] sukhmel@programming.dev 2 points 1 month ago

Probably, because in production there are really few things that are best done with regex. Most use I had for regex in production is filling in data from user-provided files with specifically crafted names, and even there there was some guesswork because of errors in naming, and the same thing may have been achieved without regex by splitting and/or iterating

[-] tiredofsametab@kbin.run 4 points 1 month ago

Actually writing code that uses them: last month. Commandline: last week.

[-] verstra@programming.dev 4 points 1 month ago

Today, to configure fail2ban. Before that, yesterday to select which tests to run.

[-] nik9000@programming.dev 1 points 1 month ago

Usually I use glob patterns for test selection.

But I did use reges yesterday to find something else. A java security file definition.

[-] livingcoder@programming.dev 4 points 1 month ago

Yesterday doing a search using vim for a class that shared a lot of characters at the front with many other classes: /Bas.*Some I could have done a more precise search with better regex, but this was quick, easy, and worked.

[-] Kissaki@programming.dev 2 points 1 month ago* (last edited 1 month ago)

Earlier this week for a character range.

/edit: Now I remember. For setting up a new entry in Jenkins CI build failure analysis - identifying the build failure cause in the log.

[-] FizzyOrange@programming.dev 2 points 1 month ago

We use it for triaging test failure (running tens of thousands of tests for CPU design verification).

That use is acceptable because it is purely informational. In general you should avoid regexes at all costs. They're difficult to read, and easy to get wrong. Generally they are a very big red flag.

Unfortunately they tend to get used where they shouldn't due to lazy developers not parsing things properly.

[-] Dropkick3038@programming.dev 1 points 1 month ago* (last edited 1 month ago)

regexes are a well established solution for parsing strings. what exactly is the "proper" alternative you propose?

[-] spartanatreyu@programming.dev 1 points 1 month ago

There are some tools/libraries that act as a front-layer over regex.

They basically follow the same logic as ORMs for databases:

  1. Get rid of the bottom layer to make some hidden footguns harder to trigger
  2. Make the used layer closer to the way the surrounding language is used.

But there's no common standard, and it's always language specific.

Personally I think using linters is the best option since it will highlight the footguns and recommend simpler regexes. (e.g. Swapping [0-9] for \d)

[-] obbeel@lemmy.eco.br 2 points 2 weeks ago

I used it to check a user input format.

this post was submitted on 04 Jul 2024
25 points (93.1% liked)

Programming

16687 readers
267 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