从 nsis 中的字符串变量中修剪 html 实体

发布于 2025-01-08 06:28:34 字数 817 浏览 1 评论 0 原文

我正在努力寻找摆脱的方法




符号。

我尝试过 Trim 和 CharStrip 功能,但没有成功。

代码片段:

  ${CharStrip} "
" "$R4" "$R3"
  !insertmacro WriteXMLPathAttr "/configuration/FTGAuth" "value" "$R3"

WriteXMLPathAttr 宏:

  ${xml::RootElement} $R1 $R0
  !ifdef DEBUGMODE_NSISDBG
    nsisdbg::sendtolog /NOUNLOAD " root : $R1"
  !endif  
  ${xml::GotoPath} "${XML_PATH}" $R1
  !ifdef DEBUGMODE_NSISDBG
    nsisdbg::sendtolog /NOUNLOAD "GotoPath ${XML_PATH} result: $R1 "
  !endif
  ${xml::SetAttribute} "${XML_PARAM}" "${XML_VARIABLE}" $R1
  !ifdef DEBUGMODE_NSISDBG
    nsisdbg::sendtolog /NOUNLOAD "SetAttribute result $R1 : ${XML_VARIABLE} "
  !endif

感谢您的帮助!

:)

I am trying to find out the way to get rid of the

symbols from string.

I have tried Trim and CharStrip functions, but with no success.

Code snipp:

  ${CharStrip} "
" "$R4" "$R3"
  !insertmacro WriteXMLPathAttr "/configuration/FTGAuth" "value" "$R3"

WriteXMLPathAttr macro:

  ${xml::RootElement} $R1 $R0
  !ifdef DEBUGMODE_NSISDBG
    nsisdbg::sendtolog /NOUNLOAD " root : $R1"
  !endif  
  ${xml::GotoPath} "${XML_PATH}" $R1
  !ifdef DEBUGMODE_NSISDBG
    nsisdbg::sendtolog /NOUNLOAD "GotoPath ${XML_PATH} result: $R1 "
  !endif
  ${xml::SetAttribute} "${XML_PARAM}" "${XML_VARIABLE}" $R1
  !ifdef DEBUGMODE_NSISDBG
    nsisdbg::sendtolog /NOUNLOAD "SetAttribute result $R1 : ${XML_VARIABLE} "
  !endif

Thanks for any help!

:)

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

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

发布评论

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

评论(1

我的奇迹 2025-01-15 06:28:34

您可以尝试使用 替换子字符串宏 /nsis.sourceforge.net/Category%3aString_Functions" rel="nofollow">wiki 的字符串函数部分。

还有另一种字符串替换替代方案。

You could try with the Replace Sub String macro from the String functions section of the wiki.

There is also Another string replace alternative.

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