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


C++ wcsspn()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 wcsspn() function in C/C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。