我的测试脚本有问题
names.txt contents
foo 1
test 0
data="names.txt"
name="test"
--
d=io.open(data,"r")
s=d:read("*a")
f=string.gsub(s,"%"..name,"%1 1")
print(f)
print"------"
print(f:gsub("(%w+)%s*(%d)","%1"):format("%s"))
lua上的输出
foo 1
test 1 0
------
foo
test 0
我想用字符串获取第一个数字
from test 0 to test 1
我希望有一个人可以帮助我