[code]
import std.regex;
enum Token : string {
Blank = r"\s+"
}
void main() {
const string text = "Foo Bar";
// text.split(regex(Token.Blank)); // don't work
const string blank = Token.Blank;
text.split(regex(blank)); // work
}
[/code]
Can me somebody explain that? o.O