2016-10-17 76 views
0

如何在XML中爲textTabs值編碼特殊字符。例如Docusignapi Invalid_Request_Body XML如何對特殊字符進行編碼

<text> 
<tabLabel>Specifications</tabLabel> 
<value>this isn’t the best type of board we need the "Strong Stuff"</value> 
</text> 

通常我會用下面的

<text> 
<tabLabel>Specifications</tabLabel> 
<value>this isn&apos;t the best type of board we need the &quot;Strong Stuff&quot;</value> 
</text> 

替換特殊字符但是,當我有這個值查看實際的文獻中,沒有翻譯回來?

回答

0

您是否嘗試過使用轉義序列引號(\「),基本上是這樣的:

<text> 
<tabLabel>Specifications</tabLabel> 
<value>this isn’t the best type of board we need the \"Strong Stuff\"</value> 
</text>