strlen

文字列の長さの取得

【書式】
#include <string.h>
size_t strlen(const char *s);

【説明】
文字列*sの長さを取得し返却します。長さに'\0'は含みません。

【引数】
const char *s : 文字列

【戻り値】
文字列*sの長さ。

【使用例】
#include <stdio.h>
#include <string.h>

int main(void)
{
    int len;
    char s[] = "today";

    len = strlen(s);
    printf("\"%s\" は %d 文字\n", s, len);

    printf("\"%s\" は %d 文字\n", "hello world", strlen("hello world"));

    return 0;
}
【実行結果】
"today" は 5 文字
"hello world" は 11 文字

戻る


banner
初心者のためのポイント学習C言語」
Copyright(c) 2000-2004 TOMOJI All Rights Reserved