如何在字符串变量中转义引号? [复制]
Posted
技术标签:
【中文标题】如何在字符串变量中转义引号? [复制]【英文标题】:How do I escape quotes in a string variable? [duplicate] 【发布时间】:2014-09-28 19:01:06 【问题描述】:我有这个: 我想把它放在这个:
string firstTag = "";
所以最后我会得到:string firstTag = ""; 如果我将在 firstTag 上使用断点,我只会看到:
这是我尝试过的:
public static void test(string filename)
filename = @"c:\temp\scoopstest\scooptest.html";
int f = 0;
int startPos = 0;
string firstTag = "<font color="898A8E">";
但我收到错误:898A8E">"
【问题讨论】:
另见***.com/questions/1928909/… 【参考方案1】:当然你得到了那个错误。您必须转义引号:
"<font color=\"898A8E\">"
^ ^
【讨论】:
【参考方案2】:我不完全确定我是否正确回答了这个问题,但是
string firstTag = "<font color="898A8E">";
如果你不escape the quotation marks看起来有问题:
string firstTag = "<font color=\"898A8E\">";
【讨论】:
以上是关于如何在字符串变量中转义引号? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何在 T-SQL 中的 XML 字符串中的属性中转义双引号?