gpt4 book ai didi

c# - 如何转义经典 ASP 中的字符串以用于 XPath 查询?

转载 作者:行者123 更新时间:2023-11-30 16:35:05 25 4
gpt4 key购买 nike

我有一个字符串,我想将其转义以用于 XPath 查询。在 C# 中,我可以通过调用 SecurityElement.Escape 来完成此操作。经典 ASP 中是否有等效的调用?

最佳答案

不,您需要自己处理字符串转义。

xpath = "//node[@attribute='" & SecurityElementEscape(value) & "']"

Function SecurityElementEscape(value)
SecurityElementEscape =
Replace(Replace(Replace(Replace(Replace(value,
"&" , "&" ), '' // must be first one
"<" , "&lt;" ),
">" , "&gt;" ),
"""", "&quot;"),
"'" , "&apos;")
End Function

关于c# - 如何转义经典 ASP 中的字符串以用于 XPath 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2148722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com