Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking at the IsCharAlphaNumeric Windows API function. As it only takes a single TCHAR, it obviously can't make any decisions about surrogate pairs for UTF16 content. Does that mean that there are no alphanumeric characters that are surrogate pairs?

share|improve this question

3 Answers

up vote 4 down vote accepted

Characters outside the BMP can be letters. (Michael Kaplan recently discussed a bug in the classification of the character U+1F48C.) But IsCharAlphaNumeric cannot see characters outside the BMP (for the reasons you noted), so you cannot obtain classification information for them that way.

If you have a surrogate pair, call GetStringType with cchSrc = 2 and check for C1_ALPHA and C1_DIGIT.

Edit: The second half of this answer is incorrect GetStringType does not support surrogate pairs.

share|improve this answer

You can determine yourself by looking at the Unicode plane assignment what you are missing by not being able to inspect non-BMP codepoints.

For example, you won't be able to identify imperial Aramaic characters as alphanumeric. Shame.

share|improve this answer

Does that mean that there are no alphanumeric characters that are surrogate pairs?

No, there are supplementary code-points that are in the letter group.

Comparing a char to a code-point?

For example, Character.isLetter('\uD840') returns false, even though this specific value if followed by any low-surrogate value in a string would represent a letter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.