gpt4 book ai didi

c# - 处理从 C# 生成的 html 中的嵌套引号

转载 作者:太空宇宙 更新时间:2023-11-04 15:41:54 25 4
gpt4 key购买 nike

我正在使用第 3 方库来显示工具提示,如下所示:

string tooltip = "test";
output.Write("onmouseover='Tip(\"" + test + "\");'"); // work fine :)

我在遇到以下情况时遇到问题,我需要引号进行格式化:

string tooltip = "<span style='color:red;'>test</span>";
output.Write("onmouseover='Tip(\"" + test + "\");'"); // no working :(

我如何转义工具提示中 html 所需的引号,以免中断函数调用?

最佳答案

" 的任何实例替换为 ",如下所示:

test.Replace( "\"", "&quot;" )

关于c# - 处理从 C# 生成的 html 中的嵌套引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2223543/

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