Lua 5.3字符串库中所有函数的名称是什么?

时间:2015-02-03 10:10:21

标签: string lua lua-5.3

这是一个函数名称寄存器闭包,用于注册库名称:

Pool对象:

function FooBarPool()
  local Names = {}
  local self = {}
    function self:Register(fFoo,sName)
      if(fFoo) then
        Names[fFoo] = sName
      end
    end
    function self:GetName(fFoo)
      return Names[fFoo] or "N/A"
    end
  return self
end

创建一个Pool对象

local Pool = FooBarPool()

注册已知的库函数

Pool:Register(string.sub,"string.sub")
Pool:Register(string.gsub,"string.gsub")
Pool:Register(string.match,"string.match")
Pool:Register(string.gmatch,"string.gmatch")
Pool:Register(string.find,"string.find")
Pool:Register(string.gfind,"string.gfind")
Pool:Register(string.format,"string.format")
Pool:Register(string.byte,"string.byte")
Pool:Register(string.char,"string.char")
Pool:Register(string.len,"string.len")
Pool:Register(string.lower,"string.lower")
Pool:Register(string.upper,"string.upper")
Pool:Register(string.rep,"string.rep")
Pool:Register(string.reverse,"string.reverse")

for k,v in pairs(string) do
  print(tostring(v) .. " : "..Pool:GetName(v))
end

2 个答案:

答案 0 :(得分:2)

如果您在上一个循环中添加print(k,v),则会发现您遗失了string.dump

函数string.gfind不是标准函数。它出现在Lua 5.0中,但在Lua 5.1中被重命名为string.gmatch

您可以使用

获取string库中的所有名称
for k in pairs(string) do
    print(k)
end

或查看manual

答案 1 :(得分:0)

为什么不在数组中列出字符串库字符串函数然后迭代 他们使用配对功能,因此:    strings = {“string.sub”,“string.gsub”,...,“string.reverse”};    对于_k,v成对(字符串)执行print(v)end; 我发现这比上面给出的答案更容易。 BTW是否有更好的方法来解压缩所有字符串库字符串函数而不必将它们列在表中?