How to Convert string 1234567890 to 123,45,67,890.00 this format

Hi @Anil_Potekar ,

Could you Check with the below Expression :

CDbl("1234567890").ToString("#,###.00")

or

CDbl("1234567890").ToString("N",new CultureInfo("hi-IN"))

Let us know if this doesn’t work

1 Like