Logo

Programming-Idioms

History of Idiom 55 > diff from v98 to v99

Edit summary for version 99 by cock:
[D] Nicer syntax

Version 98

2020-05-10, 21:42:45

Version 99

2020-06-23, 05:44:13

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Imports
import std.conv;
Imports
import std.conv;
Code
string s = to!string(i);
Code
string s = i.to!string;