Format string value

How to format string “365,00” to “3,65”?

Thank you!

Handling the , as decimal separator we can do as following:
grafik

for the reformatting we suggest:


grafik
(Double.Parse("365,00", myCI) / 100).tostring("N2", myCI)

1 Like