std::wcscspn
来自cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <cwchar>
|
||
| std::size_t wcscspn( const wchar_t* dest, const wchar_t* src ); |
||
。返回起始段宽字符串的最大长度指出
dest包含的字符不宽字符串所指向的src.Original:
Returns the length of the maximum initial segment of the wide string pointed to by
dest, that consists of only the characters not found in wide string pointed to by src.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 。参数。
| dest | - | 。 null结尾的宽字符串的指针进行分析。
Original: pointer to the null-terminated wide string to be analyzed The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| src | - | 。指针null结尾的的宽字符串包含的字符进行搜索。
Original: pointer to the null-terminated wide string that contains the characters to search for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
===。 返回值。===
。最大的起始段,只包含未找到的字符中的字符串所指向
src的长度。Original:
The length of the maximum initial segment that contains only characters not found in the character string pointed to by
srcThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 。为例。
| 本节是不完整的 原因: no example |
[编辑] 。另请参阅。
| 返回的长度的最大的初始段,由 只有宽字符宽字符串在另一个发现 Original: returns the length of the maximum initial segment that consists of only the wide characters found in another wide string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (函数) | |
| 发现任何宽字符的第一个位置,在一个宽的字符串,在另一个宽字符串 Original: finds the first location of any wide character in one wide string, in another wide string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (函数) | |
| C documentation for wcscspn
| |