Judge whether it is a Chinese character based on the Unicode code

Source: Internet
Author: User

1. Use the istextunicode function to determine whether the current string is Unicode-encoded.

Bool B = istextunicode (cstmp, cstmp. getlength (), null );

2. determine whether it is a Chinese character based on the Unicode code

Cstring szwords (_ T ("test font "));
Cstring sztmp;
For (; icur <szwords. getlength (); ++ icur)
{
Sztmp = szwords. mid (icur, 1 );

// Calculate the Unicode code of the character
Uses_conversion;
Char * str1 = w2a (sztmp );
_ Bstr_t STR = str1;
Wchar *
Str2 = STR;
Int ichar = * str2;

// Chinese, Japanese, and Korean, hieroglyphics (CJK) from 0x3000 to 0x9fff (UNICODE)
If (ichar> = 0x3000 & ichar <= 0x9fff ))
{
// Chinese, Japanese, and Korean hieroglyphics
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.