Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
RA6
Creator
Creator

Unidentified symbol - Xml file construction

Hello folks,

 

I have a csv file which is used to construct an xml file.

When i opened the csv file in notepad++, i see unidentified symbol:

0683p000009M8XY.png

 

When the xml conversion is done, the [US] is converted into 
<personalFieldValue>TGW&#31;_A320</personalFieldValue>

 

The problem is that the xml file which is generated has become invalid since ampersand [&] is a xml special characters.

Is there a way to find all the lines which consists of any unidentified characters [US] ?

Is there a way to remove all unidentified characters [US] ?

Is there a way to insert the ampersand [&] without crashed the structure?

Thank you.

 

Best regards,

asadasing

 

Labels (2)
1 Reply
fdenis
Creator III
Creator III

you can replace all strange char: row1.column.replaceAll("a","e")
but is your xml valid?
did you use the right charset?