std.array.split - Template instantiating error

biozic via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sat Apr 18 02:26:47 PDT 2015


On Saturday, 18 April 2015 at 08:08:41 UTC, nrgyzer wrote:
> Hi,
>
> I've the following source:
>
> import std.array : split;
> import std.stdio : writeln;
>
> void main()
> {
>    string myString = "Hello World";
>    string[] splitted = myString.split(" ");
> }
>
> But when I compile the code above, I'm getting the following 
> error:
>
> Error: template instance std.array.split!(string, string) error 
> instantiating.
>
> I'm using the latest version of dmd (2.067.0), but I cannot 
> figure out what I'm doing wrong :(. How to solve the problem?
>
> Thanks in advance!

Works for me with DMD 2.067.0 on OSX:
["Hello", "World"]



More information about the Digitalmars-d-learn mailing list