匹配值Lua

发布于 2025-01-18 14:27:32 字数 495 浏览 0 评论 0原文

得到了这个答案。

<div class="executor-item--btns">
  <form name="UserResetAccount" onsubmit="event.preventDefault(); return false;">
    <input type="hidden" name="UserResetAccount[nonce]" value="68a7c22f1d">
    <input type="hidden" name="UserResetAccount[network]" value="1">

如何从“ userresetaccount [nonce]“ value =“ this value”
)获取值 从使用string.match? 感谢你

got this get answer.

<div class="executor-item--btns">
  <form name="UserResetAccount" onsubmit="event.preventDefault(); return false;">
    <input type="hidden" name="UserResetAccount[nonce]" value="68a7c22f1d">
    <input type="hidden" name="UserResetAccount[network]" value="1">

how to get value from "UserResetAccount[nonce]" value="THIS VALUE"
and from "UserResetAccount[network]" value="THIS VALUE" using string.match?
thank u

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苦笑流年记忆 2025-01-25 14:27:33

无法充分用正态表达式解析html 。 LUA模式在某些方面(但在其他方面也稍弱)比正则表达式更强大(但在其他方面也稍弱),但仍然不足以完全解析HTML。使用图案或正则表达式的所有内容必将失败,以获取更复杂或精心设计的文档。

您应该使用适当的html解析器,例如 gumbo 。根据您使用的解析器,您可以使用XPATH或CSS选择器(input [name =“ userresetaccount [nonce]”])来获得该input> input element> element(element> element(如果使用Gumbo,则可以使用getElementsByTagName(“ Input”),然后在元素列表上循环以搜索name ==“ userresetaccount [nonce]> )。

You can't adequately parse HTML with regular expressions. Lua patterns are slightly more powerful in some aspects (but also slightly weaker in other, more basic ones) than regular expressions yet still not powerful enough to fully parse HTML. Everything using patterns or regular expressions is bound to fail for more complex or specially crafted documents.

You should use a proper HTML parser such as Gumbo. Depending on the parser you use, you might use XPath or CSS selectors (input[name="UserResetAccount[nonce]"]) to obtain the value of that input element (if you use Gumbo, you can use getElementsByTagName("input") and then loop over the element list to search for the element with name == "UserResetAccount[nonce]").

俯瞰星空 2025-01-25 14:27:33

使用string.gmatch此方式:

for fieldname, value in str:gmatch("UserResetAccount%[(.-)%].-value=\"(.-)\"")do
    print(fieldname .. "=>" .. value)
end 

带有示例输出:

nonce => 68a7c22f1d
network => 1

with string.gmatch this way:

for fieldname, value in str:gmatch("UserResetAccount%[(.-)%].-value=\"(.-)\"")do
    print(fieldname .. "=>" .. value)
end 

with your example output:

nonce => 68a7c22f1d
network => 1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文