Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我运行 xmltask 时,它会将标签转换'为'. 示例: 从: <Value>'operation'</Value> 到: <Value>'operation'</Value>
'
'
<Value>'operation'</Value>
<Value>'operation'</Value>
如何避免这种自动转换? 我希望它'保持原样。
尝试将expandEntityReferences属性设置为false:
expandEntityReferences
false
<xmltask source="..." dest="..." expandEntityReferences="false"/>
如果你真的想保留你的&apos,你可以试试这个:
&apos
写&apos;而不是'
&apos;
它将像这样处理:
&apos;=> ' (而不是'=> ')
这意味着您必须将每个替换&为&...
&
&
必须有更聪明的解决方案
阿波罗