Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Dart

Idiom #23 Convert real number to string with 2 decimal places

Given a real number x, create its string representation s with 2 decimal digits following the dot.

var s = x.toStringAsFixed(2);

Only works up to 1e+21, then it uses exponential notation.
#include <stdio.h>
sprintf(s, "%.2f", x);

New implementation...
< >
programming-idioms.org