fromWindows949

Allocates a new string that contains the converted utf-16 string from the provided windows 949 encoded range.

pure nothrow @safe
wstring
fromWindows949
(
R
)
()
if (
isInputRange!R &&
isScalarType!(ElementType!R)
&&
hasLength!R
)

Parameters

range R

windows 949 encoded InputRange which contains scalar types

Return Value

Type: wstring

A utf-16 string

Examples

const(ubyte[]) cp949 = [0x64, 0x61, 0x74, 0x61, 0x5C, 0x69, 0x6D, 0x66,
    0x5C, 0xB1, 0xB8, 0xC6, 0xE4, 0xC4, 0xDA, 0x5F,
    0xC5, 0xA9, 0xB7, 0xE7, 0xBC, 0xBC, 0xC0, 0xCC,
    0xB4, 0xF5, 0x5F, 0xB3, 0xB2, 0x2E, 0x69, 0x6D,
    0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00];

const(ushort[]) utf16 = [0x64, 0x61, 0x74, 0x61, 0x5C, 0x69, 0x6D, 0x66,
    0x5C, 0xAD6C, 0xD398, 0xCF54, 0x5F, 0xD06C, 0xB8E8, 0xC138,
    0xC774, 0xB354, 0x5F, 0xB0A8, 0x2E, 0x69, 0x6D, 0x66];

wstring output = fromWindows949(cp949);
import std.string : representation;
import std.algorithm : equal;

auto repr = output.representation;

assert(repr.equal(utf16));

Meta