c常用函数-strlen

Posted lvchengda

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c常用函数-strlen相关的知识,希望对你有一定的参考价值。

strlen

返回字符串长度

Action()
{    
    char test[] = "yyyHHHJJJoo";
    unsigned int a;
    a = strlen(test);
    lr_output_message("%d",a);
    return 0;
}

 

在计算字符串长度时, strlen一旦遇到“"就会认为字符串已经结束。因此, "This is a test!"与"This is a test!abcde"的长度是一样的。

以上是关于c常用函数-strlen的主要内容,如果未能解决你的问题,请参考以下文章

字符串常用函数

C语言常用字符串函数

strlen源码

C语言注意事项(strlen和sizeof)

C#常用代码片段备忘

php中常用的字符串长度函数strlen()与mb_strlen()实例解释