Page 1 of 1

Case insensitive hexadecimal numbers

Posted: Wed Oct 08, 2025 7:58 am
by HeliGungir
TL;DR:
Make uppercase hexadecimal numbers work in logistic groups, combinators, control behaviors, etc.
What?
Typing 0xffff works but typing 0xFFFF does not, and I think it should.
Why?
I tried various prefixes and postfixes to see if hex was supported at all, and none of them worked.
  • 0x prefix
  • x prefix
  • x postfix
  • h prefix
  • h postfix
hex.png
hex.png (621.92 KiB) Viewed 122 times
Since I knew from a FFF blogpost that number fields now support SI postfixes, I made a feature request for hexadecimal support.

But it turns out hexadecimals are supported after all (with a 0x prefix), and the problem is I was using uppercase A-F instead of lowercase a-f. Usually, hex numbers are not case sensitive.

Re: Case insensitive hexadecimal numbers

Posted: Wed Oct 08, 2025 8:09 am
by mmmPI
Make sense to me, there's no risk of confusion with k or m for kilo/thousands ands millions and that would make it 1 less thing to trip onto.