在 Lua 中,如何在 url 中找到特定的字符串?
Posted
技术标签:
【中文标题】在 Lua 中,如何在 url 中找到特定的字符串?【英文标题】:In Lua, how to find particular string in url ? 【发布时间】:2016-08-05 13:31:26 【问题描述】:我正在编写一个 Lua 函数,如果 url 具有特定字符串(例如“home”),我想添加一个 if/else 语句,如果 url 看起来像这样:
http://AAA/home
http://AAA/home/01
http://AAA/home/02
然后停止该函数,但如果 url 没有“home”字符串,则执行该函数:
http://AAA/next
http://AAA/test
谁能给我一些关于检测 url 中特定字符串的线索?
【问题讨论】:
【参考方案1】:有两种方法可以做到这一点:
你可以使用string.match()
或string.find()
,我个人使用string.find()
(大多数人都这样做)。
您的代码将如下所示:
text = "http://AAA/home"
if string.find(text, "home?",0,true) then
# do what you want
else
# do something else
end
PS:重复的问题 - How to check if matching text is found in a string in Lua?
【讨论】:
无论何时使用 string.find,请注意搜索的字符串是正则表达式 - 所以搜索“home?”也会匹配“hom”。为避免这种情况,请使用 string.find(text, "home?",0,true) 表示它是纯字符串 see the manual以上是关于在 Lua 中,如何在 url 中找到特定的字符串?的主要内容,如果未能解决你的问题,请参考以下文章