我有这个在RMS中提供收据的xml文件。我想知道是否有办法在变量
之后修剪尾随空格<IF>
<CONDITION> (Receipt.TaxSystem = taxsystemVAT) & (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字段。