我有以下代码:
local text = 'CIA'
if text == text..'+X' then
print 'true'
else
print 'false'
end
我想检查上一篇文章是否以(' + X')
结尾答案 0 :(得分:4)
string.sub
函数提取子字符串。负指数从结束开始。
if string.sub(text, -2) == '+X' then
-- Ends with +X, do stuff accordingly.
end