I'm receiving a string value (for example "331000110.00") and I want to convert it so it has thousands separators (I want to have something like this: 331 000 110.00). Important thing is that I want this field to stay as a string. Anyone can help me with this?
Asked
Active
Viewed 94 times
0
-
https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings and https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/types/how-to-convert-a-string-to-a-number – TheGeneral Nov 27 '20 at 08:27
-
`Decimal.Parse("331000110.00").ToString("#,0.00");` – Fabio Nov 27 '20 at 08:28