Lua字符串,带空格的通配符

时间:2012-06-10 18:52:36

标签: lua

我想在长字符串中搜索各种项目,这些项目可能是这样的;

"test     test"
"test            test"
"test test"

所以我不知道测试之间可能有多少空格所以有一个通配符我可以用来基本告诉lua如果它的“测试”和“测试”,只要它之间至少有1个空格字符测试?

1 个答案:

答案 0 :(得分:2)

尝试匹配此模式:"test +test"

以下是一些代码:

function try(s)
    print(s:match("test +test")~=nil,s)
end

try"test     test"
try"test            test"
try"test test"
try"test,test"
try"test, test"