String interpolation

tired_eyes via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Tue Nov 10 02:21:31 PST 2015


Hi,
The only example of string interpolation I've found so far is on 
Rosetta Code:

void main() {
     import std.stdio, std.string;

     "Mary had a %s lamb.".format("little").writeln;
     "Mary had a %2$s %1$s lamb.".format("little", 
"white").writeln;
}

Is this a "proper" way of string interpolation in D? This looks a 
little clumsy. Are there any better approaches? Quick skimming 
through the docs didn't give anything.


More information about the Digitalmars-d-learn mailing list