Here is an example they use in the "Programming in Lua" book for string.match : date = "Today is 17/7/1990" d = string.match(date, "%d+/%d+/%d+") print(d) ...
確定! 回上一頁