wcspbrk()是C /C++中的內置函數,用於搜索另一個寬字符串中存在於寬字符串中的一組寬字符。它在C++的cwchar頭文件中定義。
用法:
wcspbrk(dest, src)
參數:該函數具有兩個參數,如下所示。
- dest:指定要搜索的空終止寬字符串。
- src:它指定一個以null結尾的寬字符串,其中包含要搜索的字符。
返回值:該函數返回兩個值,如下所示:
- 如果在dest和src中存在一個或多個公共寬字符,則該函數將指針返回到在dest中也是src的第一個寬字符。
- 如果src和dest中沒有通用的寬字符,則返回空指針。
以下示例程序旨在說明上述函數。
示例1::
// C++ program to illustrate the
// wcspbrk() function
#include <cwchar>
#include <iostream>
using namespace std;
int main()
{
wchar_t src[] = L"Ishwar Gupta";
wchar_t dest[] = L"GeeksforGeeks";
wchar_t* s = wcspbrk(dest, src);
int pos;
if (s) {
pos = s - dest;
wcout << L"First occurrence in \"" << dest
<< L"\" is at position " << pos << endl;
}
else
wcout << L"No number found in \"" << dest << "\"";
return 0;
}
輸出:
First occurrence in "GeeksforGeeks" is at position 0
示例2::
// C++ program to illustrate the
// wcspbrk() function
#include <cwchar>
#include <iostream>
using namespace std;
int main()
{
wchar_t src[] = L"123";
wchar_t dest[] = L"Hello World";
wchar_t* s = wcspbrk(dest, src);
int pos;
if (s) {
pos = s - dest;
wcout << L"First occurrence in \"" << dest
<< L"\" is at position " << pos << endl;
}
else
wcout << L"No common wide character";
return 0;
}
輸出:
No common wide character
相關用法
- C++ log()用法及代碼示例
- C++ div()用法及代碼示例
- C++ fma()用法及代碼示例
- C++ real()用法及代碼示例
- C++ map key_comp()用法及代碼示例
- C++ imag()用法及代碼示例
- C++ valarray pow()用法及代碼示例
- C++ regex_iterator()用法及代碼示例
- C++ valarray log()用法及代碼示例
注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 wcspbrk() function in C/C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。