Lua string.len()

作者: AlbertS | 来源:发表于2016-08-14 17:48 被阅读908次
    检测长度.jpg

    前言#

    今天是星期天,我还是不浪费大家的脑细胞了,直接来列举一个string家族中比较简单的函数,函数虽然简单,但是用处却很大,使用频率也很高,废话不多说,我们直接来看函数用法。

    内容#


    string.len()##

    • 原型:string.len(s)
    • 解释:返回所给字符串的长度,如果字符串中包含'\0',也会被统计为一个字符。

    Usage##

    • 首先新建一个文件将文件命名为lentest.lua然后编写如下代码:
    -- 一个常规字符串
    local sourcestr = "This is a rainy day!"
    local sourcelen = string.len(sourcestr)
    print("\nthe len of sourcestr is "..sourcelen)
    
    -- 包含'\0'的字符串
    local str = "Hello Lua \000 What?"
    local strlen = string.len(str)
    print("\nthe len of str is "..strlen)
    
    -- 换一种写法
    local strlen_new = str:len()
    print("\nthe len of str is "..strlen_new)
    
    • 运行结果
    string_len.png

    总结#

    • 这个函数也会统计字符串中'\0'的个数,这和c语言是不一样的,这一点需要注意
    • 第三组测试我是为了复习一下string家族中所有函数的另一种写法,其实以前也总结过,只不过今天在这里再次巩固一下

    相关文章

      网友评论

        本文标题:Lua string.len()

        本文链接:https://www.haomeiwen.com/subject/fqoesttx.html