好的,所以我有一個string
並且想要分割它並將其部分返回到一個字符串數組中。分隔帶分隔符的字符串
這是我的代碼:
// import std.algorithm;
string include = "one,two,three";
string[] paths = splitter(include,",");
這將引發一個錯誤:Error: cannot cast from Result to string[]
即使我嘗試在函數調用前面添加一個cast(string[])
。
任何想法?
@pmg我的壞! Mistagged。這是D. :-) –