How to convert String Datatype value in Comma separated value?

@kawalkarhemant
stra=“1234565”
try this it will work
string.Format(System.Globalization.CultureInfo.GetCultureInfo(“en-IN”),“{0:n}”,Convert.ToDouble(stra))
it will give 12,34,565.00
after that you can remove if you dont want decimal values

Regards,
Mahesh

5 Likes