📅  最后修改于: 2020-09-25 10:01:15             🧑  作者: Mango
wcsrchr() 函数在
const wchar_t* wcsrchr( const wchar_t* str, wchar_t ch );
wchar_t* wcsrchr( wchar_t* str, wchar_t ch );
wcsrchr() 函数采用两个参数: str
和ch
。它在str
指向的宽字符串搜索宽字符 ch
的最后一次出现。
如果找到ch
,则wcsrchr() 函数返回指向ch
在str
最后一个位置的指针,否则返回空指针。
#include
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "en_US.utf8");
wchar_t str[] = L"\u222b\u222e\u2231\u2211\u220f\u222b";
wchar_t ch = L'∫';// Integral sign
wchar_t* p = wcsrchr(str, ch);
if (p)
wcout << L"Last position of " << ch << L" in \"" << str << "\" is " << (p-str);
else
wcout << ch << L" is not present \"" << str << L"\"";
return 0;
}
运行该程序时,输出为:
Last position of ∫ in "∫∮∱∑∏∫" is 5