我是 Lua 的新手,所以我现在正在学习操作符部分。Lua 中是否有与字符串一起使用的通配符?
我来自 PHP 背景,我基本上是在尝试编写以下代码:
--scan the directory's files
for file in lfs.dir(doc_path) do
--> look for any files ending with .jpg
if file is like ".jpg" then
--do something if any files ending with .JPG are scanned
end
end
您会看到我正在寻找 JPG 文件,而我正在循环浏览目录中的文件。我习惯于使用百分号或星号字符来搜索字符串。但也许 Lua 有不同的方式?
另外,我完全猜到了这样的说法:“如果文件像.......”