Amit K Gupta
Amit K Gupta
Validator is not giving error for both of the examples currently. So, yes, it is a bug. And I believe it's quite easy to fix.
I'm leaving the bug open for sometimes, if someone want to try to fix it. Changes are required in validator.js:322. I believe current regular expression can't be fixed. So the...
We're planning to introduce `skipNodes` in future version. It might help you.
The decision is still not taken. Check this discussion: https://github.com/NaturalIntelligence/fast-xml-parser/discussions/445
changing from `.` to `/` is not a big change but it is breaking change.
FXP is basically a syntax parser. But yes, parsing/validating against XSD is required in many cases. Hence, it is in the plan in the next major release.
@anoop29 I'm working on FXP v4. This will take some time to complete. I have to then incorporate some priority issues in that. And then I'll pick this feature. Working...
Sorry I have taken a big gape from opensource in this pandemic. I'm completing [cytorus](https://github.com/NaturalIntelligence/cytorus) and then will pick FXP v4. Sorry for the delay. But this feature is gonna...
All, I've just completed [detailed-xml-validator](https://github.com/NaturalIntelligence/detailed-xml-validator) for some other need. Can you please explore and provide your feedback based on your need.
Currently FXP works on String where you require to read whole file contents in advance and there is no benefit to read a few items from starting. I've added it...