this post was submitted on 11 Dec 2023
955 points (97.9% liked)

Science Memes

10340 readers
1192 users here now

Welcome to c/science_memes @ Mander.xyz!

A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.



Rules

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.


Research Committee

Other Mander Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] morrowind@lemmy.ml 20 points 9 months ago* (last edited 9 months ago) (5 children)

[0-9]*\.?[0-9]*

edit: ok no empty strings [0-9]+\.?[0-9]*

[–] amoistgrandpa@lemm.ee 8 points 9 months ago (1 children)

That regex implies “” is a number

[–] dalekcaan@lemm.ee 21 points 9 months ago

If I had a nickel for every time that happened I'd have "" nickels.

[–] dsemy@lemm.ee 5 points 9 months ago (1 children)

I didn't realize '.' is a number.

\([0-9]+\.[0-9]\)?[0-9]* is more accurate I think.

[–] morrowind@lemmy.ml 1 points 9 months ago (1 children)

I don't quite understand yours, why does it need parentheses? And requires the decimal point?

how about [0-9]+\.?[0-9]*

[–] dsemy@lemm.ee 4 points 9 months ago* (last edited 9 months ago) (1 children)

The parens in my regex group part of the regex, so the following '?' makes the entire group optional.

Your regex matches (for example) '5.' as a number.

Mine is also slightly wrong, it matches a blank string as a number. Here's a better one:

[0-9]+\(\.[0-9]+\)?

[–] morrowind@lemmy.ml 1 points 9 months ago (1 children)

Your regex matches (for example) '5.' as a number

Yeah that's on purpose. That's often used in sciences to mark significant digits.

The thing I'm confused by in yours is you're escaping the parenthesis, so there need to be literal parenthesis in the matching number, or that's what it showed in the regex checker.

[–] dsemy@lemm.ee 1 points 9 months ago

Whether or not you need to escape parens depends on the regex implementation.

[–] lemmington_steele@lemmy.world 3 points 9 months ago

yeah but by Cantor's diagonal argument, you still wouldn't be listing all the real numbers

[–] Stupidmanager@lemmy.world 3 points 9 months ago

well sure, if you want to be fancy. i was speaking in layman terms for the rest of the world.

regex for the win.

[–] Mithre@lemmy.world 1 points 9 months ago (1 children)

What about imaginary numbers?

[–] morrowind@lemmy.ml 2 points 9 months ago

[0-9]+\.?[0-9]*[ij]?

I'm not making one for mixed numbers