Gary Willoughby:
Another question: how do i convert const(char)** to string[]?
If you know that you have N strings, then a solution is (untested):
pp[0 .. N].map!text.array If it doesn't work, try: pp[0 .. N].map!(to!string).array Bye, bearophile
Gary Willoughby:
Another question: how do i convert const(char)** to string[]?
If you know that you have N strings, then a solution is (untested):
pp[0 .. N].map!text.array If it doesn't work, try: pp[0 .. N].map!(to!string).array Bye, bearophile