Hi all,
how can I change the format of a number (Double) from 0.35 to 0,35 because my application use the German format.
Can I Use varXXX.ToString(???)
Hi all,
how can I change the format of a number (Double) from 0.35 to 0,35 because my application use the German format.
Can I Use varXXX.ToString(???)
Hi,
yes you can convert it to string and replace the . with ,
varXXX.ToString.Replace(“.”, “,”)
BR,
Topi
Hi,
I believe what your are looking for is:
doubleVar.toString(New System.Globalization.CultureInfo("de-DE"))
Cheers
Does the Format Value Activity not help? You can change the separator to “.” or “,” accordingly.
Format Value Activity doesn’t work.
doubleVar.toString(New System.Globalization.CultureInfo(“de-DE”)) solves my Problem.
Thank’s very much.