関数strccnt マニュアル

(The documentation of function strccnt)

Last Update: 2022/10/28


◆機能・用途(Purpose)

文字列中の指定した文字の個数をカウントする。
Count the number of a specified character in a string.


◆形式(Format)

#include <mystring.h>
inline int strccnt(const char ∗str,const char chr)


◆引数(Arguments)

str カウントの対象とする文字列。
The string from which the number of characters is to be counted.
chr カウントする文字。
The character to be counted.


◆戻り値(Return value)

引数strが表す文字列中の引数chrが表す文字の個数。
The number of characters represented by argument chr in the string represented by argument str.


◆使用例(Example)

int number=strccnt("abcdefgdcdefgfedcba",′e′);

この例ではnumber=3となる。
This example gives number=3.