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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。