當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。