Jump to content

LucifersSon

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by LucifersSon

  1. I have an existing xslt 2.0 and I want to add an entry, that remove unnecessary trailing zeroes from decimal places.

    <value>50<value> -> <value>50<value>
    <value>50.0<value> -> <value>50<value>
    <value>50.00<value> -> <value>50<value>
    <value>50.01<value> -> <value>50.01<value>
    <value>50.10<value> -> <value>50.1<value>
    <value>50.101<value> -> <value>50.101<value>
    <value>50.0010<value> -> <value>50.001<value>

    The xml can come in in different substructures and in different tags, just looking for the same tag will not do it.

    value1>50.0010<value1>
    <substruktur>
       <value2>50.1010<value2>
    </substruktur>
    ->
    <value1>50.001<value1>
    <substruktur>
       <value2>50.101<value2>
    </substruktur>

     

×
×
  • Create New...