Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How in D would I cast integer to string? Something like

int i = 15
string message = "Value of 'i' is " ~ toString(i); // cast(string) i - also does not work 

Google brought me the answer on how to do it with tango, but I want the phobos version.

share|improve this question

3 Answers

up vote 11 down vote accepted
import std.conv;

int i = 15;
string message = "Value of 'i' is " ~ to!string(i);

or format:

import std.string;
string message = format("Value of 'i' is %s.", i);
share|improve this answer
to is just brilliant :) – Trass3r May 25 '12 at 0:48

Use to from std.conv:

int i = 15
string message = "Value of 'i' is " ~ to!string(i);
share|improve this answer
import std.conv;
auto i = 15;
auto message = text("Value of 'i' is ", i);

there are also wtext an dtext variants witch returns wstring and dstring.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.