时间:2021-05-22
在来写一个lua中实现php的strpos()函数,查找某个字符串在指定字符串首次出现的位置,其实lua中也为我们提供了这样的函数使用string.find()即可获得,下面我们还是简单写一个函数,代码如下:
复制代码 代码如下:
function strpos (str, f)
if str ~= nil and f ~= nil then
return (string.find(str, f))
else
return nil
end
end
测试如下图所示:
下面在来个strrpos()函数,查找某个字符串在指定字符串最后一次出现的位置,下面我们还是简单写一下函数,代码如下:
复制代码 代码如下:
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
测试如下图(注意:如果要查找 . 需要进行转义,使用"%."):
好了,今天就先到这里,以后我们继续实现其他函数功能
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1、查找字符位置函数:strpos($str,search,[int])://查找search在$str中的第一次位置从int开始;strrpos($str,s
本文实例讲述了php实现指定字符串中查找子字符串的方法。分享给大家供大家参考。具体分析如下:对strpos()函数可以用来在php中查找子字符串。strpos(
第一种方法:用php的strpos()函数判断字符串中是否包含某字符串的方法if(strpos('?>第四种、stristrstristr()函数查找字
本文实例讲述了php中字符查找函数strpos、strrchr与strpbrk用法。分享给大家供大家参考。具体如下:①strpos()函数返回字符串在另一个字符
详解PHP处理字符串类似indexof的方法函数在PHP中处理字符串类似indexof的函数或方法有两个,它们是strpos函数和stripos函数,这两个函数