无法在 Lua 模式中使用百分比 (%)

发布于 2024-11-27 19:47:25 字数 202 浏览 0 评论 0原文

我的 Lua 脚本中有这样一行,每次都会使我的软件崩溃:

fmt_url_map = string.gsub( fmt_url_map, '%2F','/' )

我想将文本中出现的所有 %2F 替换为 /。 如果我删除 % ,它不会崩溃。

我做错了什么?

I have this line in a Lua script that crash my software every time:

fmt_url_map = string.gsub( fmt_url_map, '%2F','/' )

I want to replace all occurrences of %2F occurrences in a text to /.
If I remove the % , it doesn't crash.

What am I doing wrong ?

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

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

发布评论

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

评论(2

楠木可依 2024-12-04 19:47:25

% 是 Lua 模式中的一个特殊符号。它用于表示某些字符集(称为字符类)。例如,%a 代表任意字母。如果您想字面匹配 %,则需要使用 %%。有关详细信息,请参阅 Lua 参考手册的本节。我怀疑您遇到了问题,因为 %F 不是字符类。

% is a special symbol in Lua patterns. It's used to represent certain sets of characters, (called character classes). For example, %a represents any letter. If you want to literally match % you need to use %%. See this section of the Lua Reference Manual for more information. I suspect you're running into problems because %F is not a character class.

罪歌 2024-12-04 19:47:25

您需要用另一个“%”来转义“%”

fmt_url_map = string.gsub( fmt_url_map, '%%2F','/' )

You need to escape the '%' with another '%'

fmt_url_map = string.gsub( fmt_url_map, '%%2F','/' )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文