[转载]lua 封装相关函数_嗼淰_新浪博客

原文地址:lua 封装相关函数 作者:beiraA520

--[[ 
    判断文件是否存在
    @param path 文件路径
    @return true存在,false不存在
--]]

function file_exists(path)
   local f=io.open(path,"r")
   if f~=nil then io.close(f) return true else return false end
end

 

--[[
    执行系统命令,不输出信息
    @param cmd string
    @return 系统状态码  0 成功 1 失败
]]--

function execute(cmd)
   return os.execute(cmd)
end

 

--[[ 
    执行系统命令,并返回执行结果字符串
    @param cmd string
    @return output string
]]--

function executeCmd(cmd)
   local f = io.popen(cmd)
   local a = f:read("*all")
  f:close()
   return a
end

 --[[
   去除字符串两边空格
   Removes spaces from the begining and end of a given string
   @param s string to be trimmed
   @return trimmed string
]]--

local function trim (s)
    if not s then
        return nil    
    end    
    return (string.gsub(s, "^%s*(.-)%s*$", "%1"))
end

--[[
    分隔字符串
    调用方法 local list = split(",", "221.236.0.0,255.255.0.0,192.168.241.2")
    返回值
for k, v in pairs(list) do
    print(k,v)
end
1       221.236.0.0
2       255.255.0.0
3       192.168.241.2
    
]]--

function split(delim, text)
    local list = {}
    if type(text) ~= "string" then
        return text    
    end
    if string.len(text) > 0 then
        delim = delim or ""
        local pos = 1
        -- if delim matches empty string then it would give an endless loop
        if string.find("", delim, 1) and delim ~= "" then
            error("delim matches empty string!")
        end
        local first, last
        while 1 do
            if delim ~= "" then
                first, last = string.find(text, delim, pos)
            else
                first, last = string.find(text, "%s+", pos)
                if first == 1 then
                    pos = last+1
                    first, last = string.find(text, "%s+", pos)
                end
            end
            if first then -- found?
                table.insert(list, string.sub(text, pos, first-1))
                pos = last+1
            else
                table.insert(list, string.sub(text, pos))
                break
  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

嗼唸

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值