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.
我提示用户输入变量“年份”。
我需要获取高斯算法的 4 位变量年份的前 2 位和后 2 位,并将它们存储在两个单独的变量中。
我需要帮助的是从“年”中获取前 2 个和后 2 个数字。
试试这个:
local n = 1234 local first = math.floor(n / 100) local last = n % 100 print(first, last)
哪个打印:
12 34
要添加到 Bart 的答案,如果您将其保留为字符串形式,您可以使用它sub来获取您想要的部分:
sub
year = '1969' firsttwo = year:sub(1,2) secondtwo = year:sub(3,4)