lua字符串

#字符串截取
string.sub(s, i, j) #参数s为字符串,i为开始字符索引,j为结束字符索引
string.sub(s, 1, 2) #从下标1开始

string.sub(s, -i) #返回子串后缀