wcsspnのヘルプ・マニュアル
日本語 英語
wcsspn --help
man wcsspn
WCSSPN(3) Linux Programmer’s Manual WCSSPN(3)
名前
wcsspn - ワイド文字文字列を進み、ワイド文字の集合の文字をスキップする
書式
#include
size_t wcsspn(const wchar_t *wcs, const wchar_t *accept);
説明
wcsspn() 関数は、 strspn(3) 関数に対応するワイド文字関数である。この関
数は、wcs の先頭部分を調べ、accept に列挙されているワイド文字だけによっ
て 構成される部分を最も長く取った場合の長さを求める。言い換えると、この
関数はワイド文字文字列 wcs の中に、ワイド文字列 accept に含まれていない
文字が現われる最初の位置を探す。
返り値
wcsspn() 関数は、wcs の先頭部分を調べ、accept に列挙されているワイド文
字だけによって構成される部分を最も長く取った場合の長さを返す。言い換 え
ると、この関数はワイド文字文字列 wcs の中に、ワイド文字列 accept に含ま
れていない文字が現われる最初の位置を返す。何も現われなかった場 合 に は
wcslen(wcs) を返す。
準拠
C99.
関連項目
strspn(3), wcscspn(3)
GNU 1999-07-25 WCSSPN(3)
WCSSPN(3) Linux Programmer’s Manual WCSSPN(3)
NAME
wcsspn - advance in a wide-character string, skipping any of a set of
wide characters
SYNOPSIS
#include
size_t wcsspn(const wchar_t *wcs, const wchar_t *accept);
DESCRIPTION
The wcsspn() function is the wide-character equivalent of the strspn(3)
function. It determines the length of the longest initial segment of
wcs which consists entirely of wide-characters listed in accept. In
other words, it searches for the first occurrence in the wide-character
string wcs of a wide-character not contained in the wide-character
string accept.
RETURN VALUE
The wcsspn() function returns the number of wide characters in the
longest initial segment of wcs which consists entirely of wide-charac-
ters listed in accept. In other words, it returns the position of the
first occurrence in the wide-character string wcs of a wide-character
not contained in the wide-character string accept, or wcslen(wcs) if
there is none.
CONFORMING TO
C99.
SEE ALSO
strspn(3), wcscspn(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 1999-07-25 WCSSPN(3)