Hi,
I am trying to compare to compare two nodes containing same double values with different scientific notation, matching the two nodes return false. But it should return true. Please help me out.
==============================================
let $a := <a>123.4</a>
let $b := <a>12.34E1</a>
return deep-equal($a,$b)
Expected : true
Output : false
Thanks
Ankit