stringmatch表達式解釋?
string.match是string庫中的一個標準函數
local str = "today is 2013-11-4"
print(string.match(str,"%d%d%d%d")
就可以匹配出含有4個數字的地方 也就是匹配出2013所在的位置
%s表示空白符 包括空格 制表符 回車
%w %c 還有[]^. - + * ? 等魔法字符 具體參考使用說明
stringmatch表達式解釋?
string.match是string庫中的一個標準函數
local str = "today is 2013-11-4"
print(string.match(str,"%d%d%d%d")
就可以匹配出含有4個數字的地方 也就是匹配出2013所在的位置
%s表示空白符 包括空格 制表符 回車
%w %c 還有[]^. - + * ? 等魔法字符 具體參考使用說明