I would like to replace commas by dots in the "productsize" node to get this result: "102.6 Small x 122.6 Big (CM)"
Below, my xml example:
Code: Select all
<order>
<items>
<productsize>102,6 Small x 122,6 Big (CM)</productsize>
</items>
</order>

Code: Select all
<order>
<items>
<productsize>102,6 Small x 122,6 Big (CM)</productsize>
</items>
</order>
Code: Select all
translate(//productsize,',','.')
Code: Select all
translate(//url,' ','%20')