I have JSON String value >
which is a special character in XML.
After the data ingestion, the XML String becomes \u003e
.
How can I preserve >
in the XML String?
I have JSON String value >
which is a special character in XML.
After the data ingestion, the XML String becomes \u003e
.
How can I preserve >
in the XML String?
You can use the XML escaped characters
" "
' '
< <
> >
& &
This post might help you with more info What characters do I need to escape in XML documents?
In almost all cases, >
is fine as itself in XML. See Simplified XML Escaping for details.
After the data ingestion, the XML String becomes
\u003e
.How can I preserve
>
in the XML String?
How to preserve a character through a translation depends entirely on the translation. You've said specified nothing more than "data ingestion". It can be a challenge to identify and remedy a poor translation of a known program; doing so for an unknown program is impossible.
Your question is unanswerable as it currently stands.