Lua string.gmatch()

作者: AlbertS | 来源:发表于2016-08-12 14:17 被阅读14004次
    寻找匹配.png

    前言#

    今天来看一个高端的匹配函数,高端在哪里呢?它比较像正则表达式,但是为了保持Lua小巧的特点有没有用正则表达式那一套,单从功能上来说这个函数的模式匹配没有正则表达式那么强大,但是就它的实现代码来说他已经相当强大了,基本满足日常的编程需求,接下来我们一起来看一下它的使用方法。

    内容#


    string.gmatch()##

    • 原型:string.gmatch (s, pattern)
    • 解释:返回一个迭代器函数,每一次调用这个函数,返回一个在字符串s找到的下一个符合pattern描述的子串。如果参数pattern描述的字符串没有找到,迭代函数返回nil

    Usage##

    • 首先新建一个文件将文件命名为gmatchtest.lua然后编写如下代码:
    local str = "12ab34,eed,56"
    local func_itor = string.gmatch(str, "%d+")
    
    -- 查看func_itor类型
    print("func_itor is", func_itor)
    
    -- 第一次调用函数func_itor
    print("func_itor ret is ", func_itor())
    
    -- 再次调用函数func_itor
    print("func_itor ret is ", func_itor())
    
    -- 使用循环来打印
    local sourcestr = "hello world from Lua"
    local index = 1
    print("\noutput capture using loop:")
    for word in string.gmatch(sourcestr, "%a+") do
        print(index, word)
        index = index + 1
    end
    
    -- 查找属性对
    local attrstr = "from=world, to=Lua, name=AlbertS"
    print("\noutput attr pair capture using loop:")
    for k,v in string.gmatch(attrstr, "(%w+)=(%w+)") do
        print(k, v)
    end
    
    local nonumstr = "fadfasd,.;p[];'asd"
    local func_numitor = string.gmatch(nonumstr, "%d+")
    local numret = func_numitor()
    print("\nnumret ret is", numret)
    
    • 运行结果
    string_gmatch.png

    总结#

    • 由第一行的打印结果可以看出函数string.gmatch()返回的类型是一个函数,这一点比较类似于以前所讲的一个函数io.lines(),有兴趣的朋友可以看一下。
    • 由函数string.gmatch()返回的迭代函数每一次调用都会得到新的匹配结果。
    • 关于匹配符的含义%a表示查找一个字母,%w表示查找一个数字或者字母,%d表示查找一个数字,而后面的+表示1个或者多个,即%a+表示查找连续的1个及以上的字母字符串,除了这几个外还有很多类型的匹配符,以后还要仔细去说,在这里不着用过多的篇幅。
    • 知道了匹配符的含义自然就能了解(%w+)=(%w+)的意义了,它就是用来寻找形如key=value的字符串的。
    • 从最后一组输出结果可以看出,当查找的字符串不包含所要匹配的字符时,返回的迭代函数调用时会返回nil

    相关文章

      网友评论

        本文标题:Lua string.gmatch()

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