wcsstr()函数在cwchar.h头文件中定义。 wcsstr()函数在目标字符串查找源的首次出现。
句法:
wchar_t* wcsstr(const wchar_t* dest, const wchar_t* src);
参数:此方法接受以下参数:
- src:它表示要搜索的空终止宽字符串的指针。
- dest:它表示指向我们必须在其中搜索的null终止宽字符串的指针。
返回值:该方法的返回值取决于:
- 如果未找到src,则返回NULL
- 如果src指向空字符串,则返回目标
- 如果找到了src,则wcsstr()函数将指针返回到dest中src的第一个宽字符。
下面的程序说明了上述函数:
示例1:当找不到源时,返回null
// c++ program to demonstrate
// example of wcsstr() function.
#include
using namespace std;
int main()
{
// initialize the destination string
wchar_t dest[] = L"Geeks Are Geeks";
// get the source string to be found
wchar_t src[] = L"To";
// Find the occurrence and print it
wcout << wcsstr(dest, src);
return 0;
}
输出:
示例2:当源为空时,返回目标字符串
// c++ program to demonstrate
// example of wcsstr() function.
#include
using namespace std;
int main()
{
// initialize the destination string
wchar_t dest[] = L"Geeks Are Geeks";
// get the source string to be found
wchar_t src[] = L"";
// Find the occurrence and print it
wcout << wcsstr(dest, src);
return 0;
}
输出:
Geeks Are Geeks
示例3:找到源后,将返回源的目标。
// c++ program to demonstrate
// example of wcsstr() function.
#include
using namespace std;
int main()
{
// initialize the destination string
wchar_t dest[] = L"Geeks Are Geeks";
// get the source string to be found
wchar_t src[] = L"Are";
// Find the occurrence and print it
wcout << wcsstr(dest, L"Are");
return 0;
}
输出:
Are Geeks
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。