Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~286 People Reached
Favorite Forums
Favorite Tags
xml x 3
Member Avatar for vt123

I am trying to merge 2 xml files in to one. They simply need to one another. Any help would be appreciated. [CODE] File 1: <?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <data> <title>Title1</title> <description>Description1</description> </data> <data> <title>Title2</title> <description>Description2</description> </data> </catalog> File 2: <?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <data> <title>Title3</title> <description>Description1</description> </data> <data> <title>Title4</title> …

Member Avatar for fikreyes
0
97
Member Avatar for vt123

Here is an excerpt of my input xml. I need to create an exact copy of this xml with only one change – the value of the element <FinancialNumber> should be formatted as a string of 5 characters – for example, in this case 1 should be replaced with “00001”. …

Member Avatar for vt123
0
189