- 198 名前:デフォルトの名無しさん mailto:sage [2008/01/07(月) 16:20:50 ]
- このスレに触発されて文字列クラス作ってるけど、疲れてきたよ。
char awstr[] = "あいaうえbおc"; typedef fixedstring<traits_SJIS> mystring; mystring fs(awstr); std::sort(fs.begin(), fs.end()); fs[3] = "字"; fs += 'Z'; std::string tmpstr = fs; traits_SJIS::char_type dd("そ"); if (dd == "そ"); out_iterator<sys2_to_ucs2> oi("てすとabc文字列"); wcout << with_nul(*oi)() << endl; fs.assign(oi); fs *= 3; wcout << fs;
|

|