std::wcspbrk
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cwchar>
|
||
const wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str ); |
||
wchar_t* wcspbrk( wchar_t* dest, const wchar_t* str ); |
||
ワイド文字列の最初の文字が
dest
が指すワイド文字列でもあるstr
、が指す見つけ.Original:
Finds the first character in wide string pointed to by
dest
, that is also in wide string pointed to by str
.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. |
値を返します
dest
でもあるstr
、または該当する文字がない場合はNULLの最初の文字へのポインタ..Original:
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.
例
This section is incomplete Reason: no example |
も参照してください
C documentation for wcspbrk
|