wcsspn()是C /C++中的內置函數,該函數返回由另一個寬字符串中存在的字符組成的寬字符串的最大初始段的長度。它在C++的cwchar頭文件中定義。
用法:
wcsspn(des, src)
參數:該函數接受兩個強製性參數,如下所述。
- des:指定要搜索的空終止的寬字符串。
- src:指定一個以null結尾的寬字符串,其中包含要搜索的字符。
返回值:該函數返回des的最大初始段的長度,該段僅包含src指向的寬字符串中的寬字符。
以下示例程序旨在說明上述函數。
示例1::
// C++ program to illustrate the
// wcsspn() function
#include <cwchar>
#include <iostream>
using namespace std;
int main()
{
wchar_t src[] = L"161106010";
wchar_t des[] = L"6010IshwarGupta";
int length = wcsspn(des, src);
if (length > 0)
wcout << des << L" contains " <<
length << L" initial numbers";
else
wcout << des << L" doesn't start with numbers";
return 0;
}
輸出:
6010IshwarGupta contains 4 initial numbers
示例2::
// C++ program to illustrate the
// wcsspn() function
#include <cwchar>
#include <iostream>
using namespace std;
int main()
{
wchar_t src[] = L"2018";
wchar_t des[] = L"GeeksforGeeks";
int length = wcsspn(des, src);
if (length > 0)
wcout << des << L" contains " <<
length << L" initial numbers";
else
wcout << des << L" doesn't start with numbers";
return 0;
}
輸出:
GeeksforGeeks doesn't start with numbers
相關用法
- C++ ios bad()用法及代碼示例
- C++ ios eof()用法及代碼示例
- C++ fill()用法及代碼示例
- C++ ios fail()用法及代碼示例
- C++ quick_exit()用法及代碼示例
- C++ fill_n()用法及代碼示例
- C語言 fopen()用法及代碼示例
- C++ btowc()用法及代碼示例
- C++ conj()用法及代碼示例
- C++ wcscmp()用法及代碼示例
- C++ norm()用法及代碼示例
- C++ ios rdstate()用法及代碼示例
- C++ wcscpy()用法及代碼示例
注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 wcsspn() function in C/C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。