<DIV>I have a question about "StringImpl::create()". Is it can only input latin1 data? </DIV>
<DIV>If it can only input the latin1 data, the following code maybe incrorect:</DIV>
<DIV>&nbsp;</DIV>
<DIV>In WTFString.cpp :</DIV>
<DIV>String String::format(const char *format, ...)</DIV>
<DIV>{</DIV>
<DIV>&nbsp;...</DIV>
<DIV>&nbsp;&nbsp;&nbsp; Vector&lt;char, 256&gt; buffer;</DIV>
<DIV>...</DIV>
<DIV>&nbsp; return StringImpl::create(buffer.data(), len);</DIV>
<DIV>}</DIV>
<DIV>&nbsp;</DIV>
<DIV>The buffer.data() maybe utf8 data!</DIV>
<DIV>&nbsp;</DIV>
<DIV>Thanks.</DIV>
<DIV>&nbsp;</DIV>
<DIV>pattin</DIV>