Closed NielsLiisberg closed 1 year ago
Having a XML file:
<a> <l>1</l> <l>2</l> <k>3</k> <l>4</l> </a>
and doing a
pA = xml_locate(pXml : '/a/l'); Result = xml_asXmlText (pA);
result will be
<l>1</l> <l>2</l> <k>3</k> <l>4</l>
Where
<l>1</l>
is the correct result
Fixed: /test/issue81.rpgle is used for unit test
/test/issue81.rpgle
Having a XML file:
and doing a
result will be
Where
is the correct result