当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ wcsstr()用法及代码示例


wcsstr()函数在cwchar.h头文件中定义。 wcsstr()函数在目标字符串中查找源的第一个匹配项。

用法:

wchar_t* wcsstr(const wchar_t* dest, const wchar_t* src);

参数:此方法接受以下参数:


  • src:它表示指向要搜索的空终止宽字符串的指针。
  • dest:它代表指向我们必须在其中搜索的空终止宽字符串的指针。

返回值:此方法的返回值取决于:

  • 如果未找到src,则返回NULL
  • 如果src指向空字符串,则返回目标
  • 如果找到src,则wcsstr()函数将指针返回到dest中src的第一个宽字符。

以下示例程序旨在说明上述函数:

范例1:如果找不到源,则返回null

// c++ program to demonstrate 
// example of wcsstr() function. 
  
#include <bits/stdc++.h> 
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 <bits/stdc++.h> 
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 <bits/stdc++.h> 
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


相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 wcsstr() function in C++ with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。