I have a Unicode string consisting of letters, digits and punctuation marks. Ho can I detect characters that are digits and letters (not necessarily ASCII) with a C++ standard library or Win32 API?
I have a Unicode string consisting of letters, digits and punctuation marks. Ho can
Share
iswdigit(), iswalpha() and iswalnum() are the functions you are looking for.
Cheers !