1

我正在开发一个项目,最终用户将运行 Lua,并与用 Python 编写的服务器进行通信,但我找不到在 Lua 中做我需要做的事情的方法。

我给程序一个输入:

recipient command,argument,argument sender

我得到一个列表的输出,其中包含:

{"recipient", "command,argument,argument", "sender"}

然后,将这些项目分成单独的变量。之后,我将command,argument,argument分成另一个列表并再次将它们分成变量。

我是如何在 Python 中做到的:

test = "server searching,123,456 Guy" #Example
msglist = test.split()
recipient = msglist.pop(0)
msg = msglist.pop(0)
id = msglist.pop(0)

cmdArgList = cmd.split(',')
cmd = cmdArgList.pop(0)
while len(cmdArgList) > 0:
    argument = 1
    locals()["arg" + str(argument)]
    argument += 1
4

2 回答 2

1

你标题中的问题是要求一些非常具体的东西:Lua 相当于从数组中获取一个值并将其删除。那将是:

theTable = {};  --Fill this as needed
local theValue = theTable[1];  --Get the value
table.remove(theTable, 1);     --Remove the value from the table.

您在帖子中提出的问题似乎非常开放。

于 2011-09-21T03:12:51.163 回答
0

如果我是你,我不会尝试按原样移植 Python 代码。这是在 Lua 中实现相同功能的更简单的方法:

local test = "server searching,123,456 Guy"
local recipient,cmd,args,id = s:match("(.+) (.-),(.+) (.+)")

这一步之后recipient是“server”,cmd是“searching”,args是“123,456”,id是“Guy”。

我真的不明白你要做什么locals()["arg" + str(argument)],显然你还没有发布你的所有代码,因为一直访问本地arg1有点没用......但是如果你想迭代参数,只需使用string.gmatch

for arg in args:gmatch("[^,]+") do
  -- whetever you want with arg
end
于 2013-01-16T10:21:14.637 回答