名前空間
変種
操作

std::wcspbrk

提供: cppreference.com
< cpp‎ | string‎ | wide
2015年11月30日 (月) 06:58時点におけるP12bot (トーク | 投稿記録)による版

ヘッダ <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.

目次

パラメータ

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:
Pointer to the first character in dest, that is also in str, or NULL if no such character exists.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

参照

別のワイド文字列に含まれないワイド文字のみで構成される先頭部分の最大の長さを返します
(関数) [edit]
ワイド文字列中のワイド文字が現れる最後の位置を探します
(関数) [edit]