主頁 > 知識庫 > Lua中實現(xiàn)php的strpos()以及strrpos()函數(shù)

Lua中實現(xiàn)php的strpos()以及strrpos()函數(shù)

熱門標簽:新岸線智能電銷機器人 武漢外呼防封系統(tǒng)多少錢 地圖標注大廈 怎么去除地圖標注 清朝地圖標注哈爾濱 冀州市地圖標注 漳州智云呼電話機器人 百度地圖標注早餐區(qū)域 個人怎么在地圖標注需要的店鋪

在來寫一個lua中實現(xiàn)php的strpos()函數(shù),查找某個字符串在指定字符串首次出現(xiàn)的位置,其實lua中也為我們提供了這樣的函數(shù)使用string.find()即可獲得,下面我們還是簡單寫一個函數(shù),代碼如下:

復制代碼 代碼如下:

function strpos (str, f)  
    if str ~= nil and f ~= nil then  
        return (string.find(str, f))  
    else 
        return nil  
    end  
end 

測試如下圖所示:

下面在來個strrpos()函數(shù),查找某個字符串在指定字符串最后一次出現(xiàn)的位置,下面我們還是簡單寫一下函數(shù),代碼如下:

復制代碼 代碼如下:

function strrpos (str, f)  
    if str ~= nil and f ~= nil then  
        local t = true 
        local offset = 1 
        local result = nil  
        while (t)  
        do 
            local tmp = string.find(str, f, offset)  
            if tmp ~= nil then  
                offset = offset + 1 
                result = tmp  
            else 
                t = false 
            end  
        end  
        return result  
    else 
        return nil  
    end  
end 

測試如下圖(注意:如果要查找 . 需要進行轉(zhuǎn)義,使用"%."):

好了,今天就先到這里,以后我們繼續(xù)實現(xiàn)其他函數(shù)功能

您可能感興趣的文章:
  • php使用substr()和strpos()聯(lián)合查找字符串中某一特定字符的方法
  • strpos() 函數(shù)判斷字符串中是否包含某字符串的方法

標簽:臺灣 天門 儋州 濰坊 宣城 金昌 天門 德宏

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Lua中實現(xiàn)php的strpos()以及strrpos()函數(shù)》,本文關(guān)鍵詞  Lua,中,實現(xiàn),php,的,strpos,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Lua中實現(xiàn)php的strpos()以及strrpos()函數(shù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Lua中實現(xiàn)php的strpos()以及strrpos()函數(shù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章