作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图匹配文本文件中一行文本上的三段数据,并将它们存储在表格元素中。每行看起来像这样:
0.277719 0.474610 This
0.474610 0.721241 is
0.721241 1.063209 test
我有一个本地表来保存文本行,我正在尝试按如下方式分配数据片段。
local data = {}
local file = io.open( "audio/audio.txt", "r" )
local i = 1
for line in file:lines() do
data[i] = line
data[i].start, data[i].out, data[i].name = string.match( line, '(%S+)%s*(%S+)%s*(%S+)' )
i = i + 1
end
data[i] = line
部分工作得很好。下一行没有。我得到的只是 data[i].start, data[i].out, data[i].name = string.match( line, '(%S+)%s*(% S+)%s*(%S+)' )
:
attempt to index field '?' (a string value)
我做错了什么?
最佳答案
错误在行
data[i] = line
此行使 data[i] 成为一个字符串变量,不能将其他字符串索引到它。将该行更改为:
data[i] = {}
一切正常。
关于lua - string.match 抛出错误 : attempt to index field '?' (a string value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23606479/
我是一名优秀的程序员,十分优秀!