Thread overview
String interpolation
Jan 06, 2016
Guillaume Piolat
Jan 06, 2016
cym13
Jan 07, 2016
Meta
Jan 07, 2016
Guillaume Piolat
January 06, 2016
Is there a fancy way to have some kind of string interpolation in D?
January 06, 2016
On Wednesday, 6 January 2016 at 23:30:22 UTC, Guillaume Piolat wrote:
> Is there a fancy way to have some kind of string interpolation in D?

Other than std.format.format that is?
January 07, 2016
On Wednesday, 6 January 2016 at 23:30:22 UTC, Guillaume Piolat wrote:
> Is there a fancy way to have some kind of string interpolation in D?

This is probably the best you're going to be able to do in D in regards to string interpolation.

https://github.com/Abscissa/scriptlike#string-interpolation
January 07, 2016
On Thursday, 7 January 2016 at 00:24:38 UTC, Meta wrote:
> On Wednesday, 6 January 2016 at 23:30:22 UTC, Guillaume Piolat wrote:
>> Is there a fancy way to have some kind of string interpolation in D?
>
> This is probably the best you're going to be able to do in D in regards to string interpolation.
>
> https://github.com/Abscissa/scriptlike#string-interpolation

Looks good.