How to format string “365,00” to “3,65”?
Thank you!
Handling the , as decimal separator we can do as following:
for the reformatting we suggest:
(Double.Parse("365,00", myCI) / 100).tostring("N2", myCI)