码迷,mamicode.com
首页 > 其他好文 > 详细

Lua string.gsub (s, pattern, repl [, n])

时间:2017-08-09 19:07:57      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:--   替换字符串   string   参数调用   参数   pre   nbsp   home   模式   

lua的string函数导出在string module中。在lua5.1,同时也作为string类型的成员方法,因此,我们既可以写成string.gsub (s,……), 也可以s:gsub()。

string.gsub (s, pattern, repl [, n])

有四个参数,给定字符串,匹配模式、替代字符串,第四个参数是可选的,用来限制替换的范围:表示替换次数限制。

作用就是将所有符合匹配模式的地方都替换成替代字符串。并返回替换后的字符串,以及替换次数。

其中,repl可以是string,table,或者function。

 repl如果是string,则直接替换匹配到的字符串。

 repl如果是table,则将匹配到的字符串作为key,在table内查找,取table的值来作为替换字符串。

 repl如果是function,则将每一个匹配到的字符串作为function的参数调用该函数,将函数返回的值作为新的字符串进行替换。

 如果返回的是nil或者是false,则不进行替换字符串操作。

 %1表示匹配到的字符串的第一个字符串。

 %0表示匹配到的整个字符串

例子:

    x = string.gsub("hello world", "(%w+)", "%1 %1")
     --> x="hello hello world world"
     
     x = string.gsub("hello world", "%w+", "%0 %0", 1)
     --> x="hello hello world"
     
     x = string.gsub("hello world from Lua", "(%w+)%s*(%w+)", "%2 %1")
     --> x="world hello Lua from"
     
     x = string.gsub("home = $HOME, user = $USER", "%$(%w+)", os.getenv)
     --> x="home = /home/roberto, user = roberto"
     
     x = string.gsub("4+5 = $return 4+5$", "%$(.-)%$", function (s)
           return loadstring(s)()
         end)
     --> x="4+5 = 9"
     
     local t = {name="lua", version="5.1"}
     x = string.gsub("$name-$version.tar.gz", "%$(%w+)", t)
     --> x="lua-5.1.tar.gz"

Lua string.gsub (s, pattern, repl [, n])

标签:--   替换字符串   string   参数调用   参数   pre   nbsp   home   模式   

原文地址:http://www.cnblogs.com/slysky/p/7327031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!