What’s the recommended way to print an integer with thousands separator? Best I’ve come up with so far is
let thousands(x:int64) = String.Format("{0:0,0}", x)
Which works in most cases, but prints zero as 00.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1 Answer