Skip to main content

I have flatten xml file, and some data are missed. For example <p>Свободная ёмкость — <b>627 млн.м<sup>3</sup></b>

        <span class="up">11</span></p> it should be 627 млн.м, but it skipped and only values 3 and 11 are in place. In xml ex1 i have highlighted items which are missed in xml example.png. Also attached workbench.

Hi @nurbek​ 

Please, send us the file. It's not in the transformer FeatureReader.

 

 

Thanks in Advance,

 

Danilo


Hi @nurbek​ 

Please, send us the file. It's not in the transformer FeatureReader.

 

 

Thanks in Advance,

 

Danilo

Hi @danilo_fme​ ,

please find file in attached


Hi @nurbek​ 

The behaviour you're seeing is occuring because of the way the ³ symbol (cubed/superscript 3) is represented in your file as <sup>3</sup>.

Use the StringReplacer to replace any instances of <sup>3</sup> with the equivalent HTML character &#179; and the XMLFlattener should output the expected attributes.


Hi @nurbek​ 

The behaviour you're seeing is occuring because of the way the ³ symbol (cubed/superscript 3) is represented in your file as <sup>3</sup>.

Use the StringReplacer to replace any instances of <sup>3</sup> with the equivalent HTML character &#179; and the XMLFlattener should output the expected attributes.

@debbiatsafe​ thanks a lot, it seems to work


Reply