Parse file that does not have closing tags #163
-
My purpose is to read the .OFX file which is also a file with attributes. This is the content that I'm trying to parse
Attaching the OFX files as zip folder. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The input you parse is not well-formed XML, which is not supported by this library. Still, you could possibly use the event-driven parser and insert close-events as needed before converting to a DOM tree? |
Beta Was this translation helpful? Give feedback.
-
I have tried the following to add the missing closing tags
|
Beta Was this translation helpful? Give feedback.
The input you parse is not well-formed XML, which is not supported by this library. Still, you could possibly use the event-driven parser and insert close-events as needed before converting to a DOM tree?