Hi,
I am writing XML files out and wondered if something like this is the best solution for my issue. I am getting a lot of data that has Spanish characters, etc... and it is causing the XML parser to fail that is ingesting my files.
Basically, should I keep adding *Replace* lines below for all entries on this page?
Thanks.
Swi
I am writing XML files out and wondered if something like this is the best solution for my issue. I am getting a lot of data that has Spanish characters, etc... and it is causing the XML parser to fail that is ingesting my files.
Basically, should I keep adding *Replace* lines below for all entries on this page?
Thanks.
Code:
Public Function HTMLEEntititesCode(p_strText as String) as String
Dim strTemp as String
strTemp = p_strText
strTemp = Replace(strTemp, "Ó", "ó")
'repeat the above line
HTMLEEntititesCode = strTemp
End Function
Swi