在d中加入字符串数组

时间:2014-09-14 21:07:44

标签: string d

在python中,我可以这样做:

In [1]: x = ["a", "b", "c"]

In [2]: "--".join(x)
Out[2]: 'a--b--c'

d中有相同的技巧吗?

1 个答案:

答案 0 :(得分:6)

是的,请使用std.array.join

import std.array, std.stdio;

void main()
{
    auto x = ["a", "b", "c"];
    writeln(x.join("--"));
}

请注意,与Python相比,D的参数顺序是相反的。