size_t wcsspn(const wchar_t* kwpString, const wchar_t* kwpNotSet);
#include <cwchar>
int main()
{
wchar_t waString[] = L"XoaX.net";
wchar_t waNotSet[] = L"Xnt";
// Search for a character that is not in a set
int iLocation = wcsspn(waString, waNotSet);
wprintf(L"Searching \"%ws\" for characters not in \"%ws\"\n",
waString, waNotSet);
wprintf(L"Found \"%wc\" at index %d\n",
waString[iLocation], iLocation);
// Keep the window open until "Enter" is pressed
getwchar();
return 0;
}
© 20072026 XoaX.net LLC. All rights reserved.