How do I get the desired behaviour using just the format string?
printing array of strings with writefln?
Artem Tarasov via Digitalmars-d-learn Sun, 16 Nov 2014 06:20:48 -0800
writefln("%(%s-%)", ["a", "b", "c"]) doesn't print the intended
a-b-c but surrounds each string with double quotes - "a"-"b"-"c",
which I find inconsistent with the fact that writefln("%s", "a
string") prints the string without any quotes.
- printing array of strings with write... Artem Tarasov via Digitalmars-d-learn
- Re: printing array of strings w... JR via Digitalmars-d-learn
- Re: printing array of strin... Artem Tarasov via Digitalmars-d-learn
- Re: printing array of strin... Ivan Kazmenko via Digitalmars-d-learn
