import std.string; auto a=std.string.split("as,df",",");//worksbut split not in http://dlang.org/phobos/std_string.html
It's in std.array and is publicly imported into std.string, together with join.
import std.string; auto a=std.string.split("as,df",",");//worksbut split not in http://dlang.org/phobos/std_string.html
It's in std.array and is publicly imported into std.string, together with join.