lua
Sigh of Allure
这个要怎么写呢
展开
-
lua中base64的解码和编码
-- 编码function encodeBase64(source_str) local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' local s64 = '' local str = source_str while #str > 0...转载 2018-04-17 09:09:47 · 5230 阅读 · 3 评论 -
在lua中利用正则表达式分割字符串
function string.split(s, p) if s == nil then return nil; end if p == nil then return s; end local rt= {}; s = tostring(s); string.gsub(s, '[^'..p..']+', function(w) ...原创 2018-04-17 09:10:50 · 1858 阅读 · 0 评论