如何检查(+ X)最后一个文本

时间:2014-04-04 21:32:12

标签: lua

我有以下代码:

local text = 'CIA'
if text == text..'+X' then
    print 'true'
else
    print 'false'
end

我想检查上一篇文章是否以(' + X')

结尾

1 个答案:

答案 0 :(得分:4)

string.sub函数提取子字符串。负指数从结束开始。

if string.sub(text, -2) == '+X' then
     -- Ends with +X, do stuff accordingly.
end