One way to do this is to use string.gmatch
:
function checkURL(url, parametro)
for chave, valor in string.gmatch(url, "(%w+)=(%w+)") do
if valor == parametro then
return true
end
end
return false
end
Use the checkURL
function like this:
if checkURL("www.exemplo.htm?chave1=valor1&chave2=valor2", "valor1") then
print ("valor1 está presente na URL")
else
print ("valor1 NÃO foi encontrado na URL")
end
View demonstração
Another alternative is to use string.find
function :
url = "www.exemplo.htm?chave1=valor1&chave2=valor2"
if string.find(url, "valor1") then
print ("valor1 está presente na URL")
else
print ("valor1 NÃO foi encontrado na URL")
end
View demonstração