We would like to build a community for Small Basic programmers of any age who like to code. Everyone from total beginner to guru is welcome. Click here to register and share your programming journey!


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Zahl ins deutsche Format umwandeln
#2
Nice, you can also experiment with cultures:

Code:
number = 123456789.1234
LDUtilities.CurrentCulture = "de-de"
result = LDUtilities.GetCurrentCultureNumber(number)
TextWindow.WriteLine(result)
result2 = LDUtilities.GetCultureInvariantNumber(result)
TextWindow.WriteLine(result2)
Reply


Messages In This Thread
Zahl ins deutsche Format umwandeln - by martmen - 05-02-2025, 03:26 PM
RE: Zahl ins deutsche Format umwandeln - by litdev - 05-02-2025, 04:13 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)