Search

November 24, 2005
General »
...utf8" type. Thus "utf8" can represent the code point 'A'. If you assign that "utf8...
November 24, 2005
General »
...in the various encoding formats. Thus for UTF8 it is 1 byte, UTF16 = 2 bytes...
November 24, 2005
General »
...points that fit in utf8 will ever be represented by utf8, and so on. Thus...
November 23, 2005
Issues »
...new StreamBuffer(os);
ConvStream out = new ConvStream(UTF8, ISO8859-15, sb);
...
char[] mytext = "kjsldkfjlskdfjslkd";
fwritefln...
November 22, 2005
Learn »
...if I try something like this:

utf8[] myString = "multiwidth";
utf8[] slice = myString[0..1];
slice...
November 22, 2005
Learn »
...ASCII. So we would end up with

  utf8  <==> schar[]  (Short? chars)
  utf16 <==> wchar[]  (Wide chars...
November 22, 2005
Learn »
...literal";   // utf8
wchar[] s = "literal"; // utf16
dchar[] s = "literal"; // utf32

auto s = "literal"c;  // utf8...
November 21, 2005
Issues »
...on this later)

c_function_call(a.utf8);
os_function_call(a.utf16);
write_to...
November 19, 2005
Issues »
...char[].utf16
char[].utf32

wchar[].utf8
wchar[].utf32

dchar[].utf8
dchar[].utf16

Generics might require...
November 18, 2005
Issues »
...b);
  }

I always converts your characters to UTF8 encoding before writing them out.

-- 
Derek
(skype...
110 111 112 113 114 115 116 117 118 119 120
Next ›   Last »