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.
这是当前正在运行的脚本:
var_name="[Clan] Imposter" while var_name:find("[Clan]")~=nil do var_name=var_name:gsub("[Clan]", "") end print(var_name)
我期待var_name成为“冒名顶替者”,但结果是“[]冒名顶替者”。
var_name
我如何从这个函数中得到“Imposter”的结果?
您需要转义模式中的方括号:"%[Clan%]".
"%[Clan%]"