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.
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 ³ and the XMLFlattener should output the expected attributes.
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
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 ³ and the XMLFlattener should output the expected attributes.
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 ³ and the XMLFlattener should output the expected attributes.