Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在关注关于字符串拆分的lua 文档页面,我自己尝试时出错。例如,
Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio split("a,b,c", ",")
返回
stdin:1: attempt to call global 'split' (a nil value) stack traceback: stdin:1: in main chunk [C]: ?
为什么会这样?
那不是“lua 文档页面”。这是一篇 wiki 文章,解释了拆分和连接字符串的概念,而不是 Lua 中的任何实际函数。Lua 文档明确指出没有“拆分”功能。wiki 文章正在解释如何创建这样的函数和/或这样的函数如何工作。
消息很清楚:您已尝试调用名为 的全局函数split,但未定义。
split