i don't know why, but for some reason he gets the name until the " i " character, after that, he puts another line and at the end he gets escaping sequences like this:
\n\t\t
what i want:
- know a way how to put together these parts "concei" & "ção" and remove the escape sequences "\n\t\t"
i don't know why, but for some reason he gets the name until the " i " character, after that, he puts another line and at the end he gets escaping sequences like this:
\n\t\t
what i want:
- know a way how to put together these parts "concei" & "ção" and remove the escape sequences "\n\t\t"
can somebody help me please
Hi
if you have got the solution of this
please help me also
I am facing this problem
and did not get any answer.
I dont have any hands in the XML,
I am getting it through client side so I cant change special charctes
how can i get them and show them.
please please please
reply ..
i don't know why, but for some reason he gets the name until the " i " character, after that, he puts another line and at the end he gets escaping sequences like this:
\n\t\t
what i want:
- know a way how to put together these parts "concei" & "ção" and remove the escape sequences "\n\t\t"
can somebody help me please
Put the data in a <![CDATA[ ]]> section and you should get what you want.
<name><![CDATA[conceição]]></name>
--FreeRide
What about if i'm getting the xml from a webService? it's in the common format :S
If you wrote the web service, change it to be correct; otherwise you're screwed. I guess you could write your own preparser for the xml to validate it, but that's a pain.
--FreeRide