如何修剪xml变量

时间:2014-03-06 13:49:02

标签: xml

我有这个在RMS中提供收据的xml文件。我想知道是否有办法在变量

之后修剪尾随空格
<IF>
   <CONDITION> (Receipt.TaxSystem = taxsystemVAT) &amp; (Entry.Taxable = 0) </CONDITION>
    <THEN>
      <SET name="ExtendedExclsvPricePlusDiscount" type="vbcurrency">  Entry.ExtendedExclsvPrice + Entry.ExtendedDiscount </SET> 
     <ROW> Entry.Item.ItemLookupCode "|" Entry.Description "|" ExtendedExclsvPricePlusDiscount         </ROW>
    </THEN>
    <ELSE>
    <ROW> Entry.Item.ItemLookupCode "|" Entry.Description "|" Entry.ExtendedFullPrice       </ROW>
    </ELSE>
</IF>

我想修剪entry.description字段。

0 个答案:

没有答案