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.
延長部分で停止する最後の文字までキャプチャを使用string.matchして返すことはできますか?.
string.match
.
local str = "filename.lua.txt" local cap = str:match("(.+)%..+") print(cap)
出力:filename.lua
filename.lua
このパターンの鍵は、リテラルを表すために+and を使用する貪欲さです。%..
+
%.