wcstok()函数在cwchar.h头文件中定义。 wcstok()函数以空终止的宽字符串返回下一个标记。指针delim指向分隔符,即分界符。
用法:
wchar_t* wcstok(wchar_t* str, const wchar_t* delim, wchar_t ** ptr);
参数:此方法采用以下参数:
- str:它表示指向以空值结尾的宽字符串的令牌化指针。
- delim:它表示指向包含分隔符的以null终止的宽字符串的指针。
- ptr:它表示指向类型为wchar_t *的对象的指针,wcstok使用该指针存储其内部状态。
返回值:wcstok()函数将指针返回到下一个标记的开头(如果有)。否则返回零。
以下示例程序旨在说明上述函数:
范例1:
// c++ program to demonstrate
// example of wcstok() function.
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Get the string
wchar_t str[] = L"A computer science portal for geeks";
// Creating the parameters of wcstok() method
// Create the pointer of which
// the next token is required
wchar_t* ptr;
// Define the delimeter of the string
wchar_t delim[] = L" ";
// Call the wcstok() method
wchar_t* token = wcstok(str, delim, &ptr);
// Print all tokens with the help of it
while (token) {
wcout << token << endl;
token = wcstok(NULL, delim, &ptr);
}
return 0;
}
输出:
A computer science portal for geeks
相关用法
- C++ div()用法及代码示例
- C++ log()用法及代码示例
- C++ fma()用法及代码示例
- C++ strcspn()用法及代码示例
- C++ unordered_map end( )用法及代码示例
- C++ transform_inclusive_scan()用法及代码示例
- C++ array get()用法及代码示例
- C++ iswspace()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 wcstok() function in C++ with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。