std::wcstok

来自cppreference.com
< cpp‎ | string‎ | wide

 
 
字符串库
null结尾的字符串
原文:
Null-terminated strings
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
字节的字符串
多字节字符串
宽字符串
原文:
Classes
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
basic_string
char_traits
 
NULL结尾的宽字符串
功能
原文:
Functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
字符操作
原文:
Character manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
转换为数字格式
原文:
Conversions to numeric formats
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
字符串操作
原文:
String manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
数组操作
原文:
Array manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
wmemcpy
wmemmove
wmemcmp
wmemchr
wmemset
 
在头文件 <cwchar> 中定义
wchar_t* wcstok( wchar_t* str, const wchar_t* delim );
。指向一个空结尾的宽字符串中查找下一个标记str。分隔字符识别null结尾的宽字符串所指向的delim.
原文:
Finds the next token in a null-terminated wide string pointed to by str. The separator characters are identified by null-terminated wide string pointed to by delim.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
。如果str != NULL,搜索的第一个宽字符,这是“不”分离的功能。这个字符开头的“令牌”。然后,该函数搜索第一个分隔符。这个字符是“端的令牌”。功能终止,并返回,如果最终的NULL'端的令牌“被发现之前遇到的str。否则,指针“的令牌”被保存在一个静态的位置,以供以后调用。这个角色会被替换为一个NULL字符,该函数返回一个指针,指向“开始的令牌”.....
原文:
If str != NULL, the function searches for the first wide character which is not separator. This character is the beginning of the token. Then the function searches for the first separator character. This character is the end of the token. Function terminates and returns NULL if end of str is encountered before end of the token is found. Otherwise, a pointer to end of the token is saved in a static location for subsequent invocations. This character is then replaced by a NULL-character and the function returns a pointer to the beginning of the token.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
。如果str == NULL,继续留在以前的调用函数。的行为是一样的,如果以前存储的指针传递str.
原文:
If str == NULL, the function continues from where it left in previous invocation. The behavior is the same as if the previously stored pointer is passed as str.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 。参数。

str -
。指针,以空结尾的宽字符串来标记。
原文:
pointer to the null-terminated wide string to tokenize
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
delim -
。 指针,以NULL结尾的宽字符串识别分隔符。
原文:
pointer to the null-terminated wide string identifying delimiters
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

===。 返回值。===

。指向一个令牌,如果检查的字符串的末尾没有遇到的开头的指针。否则,返回NULL
原文:
Pointer to the beginning of a token if the end of examined string has not been encountered. Otherwise returns NULL>
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 。请注意。

。是不是线程安全的功能.
原文:
The function is not thread safe.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 。为例。

[编辑] 。另请参阅。

C documentation for wcstok