www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - How to converte string to wstring[]?

reply Marcone <marcone email.com> writes:
How to converte "string" to wstring[] in Dlang?
Feb 06 2020
parent reply Adam D. Ruppe <destructionator gmail.com> writes:
On Thursday, 6 February 2020 at 21:53:08 UTC, Marcone wrote:
 How to converte "string" to wstring[] in Dlang?
You don't, generally. A string can be converted to a wstring, but a wstring[] is a very different thing. import std.conv; wstring s = to!wstring(some_string); note that works for most types. just string to wstring[] depends on the context.
Feb 06 2020
parent reply novice2 <sorrybo ema.ail> writes:
import std.conv: to;

string str = "test1";
wstring[] wstr = [to!wstring(str)];
Feb 06 2020
parent Marcone <marcone email.com> writes:
On Friday, 7 February 2020 at 06:20:09 UTC, novice2 wrote:
 import std.conv: to;

 string str = "test1";
 wstring[] wstr = [to!wstring(str)];
Thank you!
Feb 08 2020