名前空間
変種
操作

「cpp/string/wide/wcspbrk」の版間の差分

提供: cppreference.com
< cpp‎ | string‎ | wide
(Translated from the English version using Google Translate)
 
(1版:Translate from the English version)

2012年10月30日 (火) 20:43時点における版

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.

目次

パラメータ

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.

も参照してください

テンプレート:cpp/string/wide/dcl list wcscspnテンプレート:cpp/string/wide/dcl list wcschr
C documentation for wcspbrk