How to use exclamation mark in XML file.
Can someone please help what is the escape character for (!)...
the password contain exclamation mark so that i'm facing an issue on XML file.
<password value="Example!"/>
thanks in advance
How to use exclamation mark in XML file.
Can someone please help what is the escape character for (!)...
the password contain exclamation mark so that i'm facing an issue on XML file.
<password value="Example!"/>
thanks in advance
As far as I know, there is no need to escape the exclamation mark in xml. There are a number of caveats for characters and their usage, and I refer you to this answer on escaping xml.
In summary, there are only five characters to escape
" "
' '
< <
> >
& &
and you should avoid --
in comment strings.