gpt4 book ai didi

string - 加入 d 中的字符串数组

转载 作者:行者123 更新时间:2023-12-01 10:46:04 25 4
gpt4 key购买 nike

在 python 中我可以这样做:

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

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

d 中是否有等效的技巧?

最佳答案

是的,使用 std.array.join :

import std.array, std.stdio;

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

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

关于string - 加入 d 中的字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25838037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com