2012年(158)
分类: C/C++
2012-11-23 17:03:12
#include
#include
int main()
{
const char* p = "7 4 3 3 8 3 2 5 2 5 0 5 3 5 3 1
";
const size_t n = strlen(p);
int result = -1;
if( IsTextUnicode(p,n,&result) )
{
switch( result )
{
case
IS_TEXT_UNICODE_STATISTICS:
printf( "%s\n",
"根据统计分析,这段文字可能是Uincode编码" );
break;
}
}
return 0;
}