is there an easy way to do this?
the data i get will be a string like “123,456,789”
i want to rewrite as 123.4M or 123.5M rounded, i guess ill add on the “M”
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.
Divide it by 1,000,000 and round it to whatever precision you want, then append “M”. If you tell us what programming language maybe I can offer an example.