My reasoning is that the period is a "stronger" punctuation mark than the comma, and it should be used for the more important separation.
https://en.wikipedia.org/wiki/Decimal_separator
My reasoning is that the period is a "stronger" punctuation mark than the comma, and it should be used for the more important separation.
https://en.wikipedia.org/wiki/Decimal_separator
I mentioned excel because it's been my arch enemy for the past 3 years to the point where I had to spend a substantial amount of time writing my own library for reading excel files The thing I'm specifically talking about is how formulas may look different across localizations. For example the sum function looks as follows in english:
=SUM(1,2,3)
while in russian it looks like this:
=СУММ(1;2;3)
and excel will not allow you to type the english version
funnily enough, phone number parsing is one of my previous arch enemies. Having to turn whaterver bullshit user has typed into a phone number probably reduced my life expectancy by several months
I feel you, I nowadays prefer doing the calculations in python and export the results in .csv for the freaks who prefer excel
This reminds me of my futile attempts of parsing URLs with regex in my teenage years when I was trying to make a guestbook for my website with PHP (the solution is
.*\..*
)