strspn



原型

size_t strspn(const char *s, const char * reject);


功能

若strcspn()返回的数值为n, 则代表字符串s 连续有n 个字符都包含reject 内的字符.


示例

#include 
#include 
void main()
{
    char *s="Golden Global View";
    cout<


结果:
0 //开始不包含空格
3 //有Gol
6 //有nedloG
1 //有G



你可能感兴趣的:(C/C++字符串)