vote up 2 vote down star
1

Using VB.net (.net 2.0) I have a string in this format:

record1_field1,record1_field2,record2_field3,record2_field1,record2_field2,

etc...

I wonder what the best (easiest) way is to get this into an xml?

I can think of 2 ways:

Method 1: - use split to get the items in an array - loop through array and build an xml string using concatenation

Method 2: - use split to get the items in an array - loops through array to build a datatable - use writexml to output xml from the datatable

The first sounds pretty simple but would require more logic to build the string.

The second seems slicker and easier to understand.

Are there other ways to do this?

flag

How do you know where record1 ends and record two begings? Will there always be three fields or are there line breaks that we can't see? – Joel Coehoorn Oct 30 '08 at 21:07
And do you care if the fields are treated as elements or attributes? – Joel Coehoorn Oct 30 '08 at 21:09
There will always be a set number of fields per each record so we can tell where one record ends and another begins. There is no hard requirement on whether a field should be an element or attribute, however I plan to make them elements. – webdtc Oct 30 '08 at 21:20

2 Answers

vote up 2 vote down check

I would do something like this:


XmlDocument doc = new XmlDocuent();

string[] data = csv.split(',');

XmlNode = doc.CreateElement("root");
foreach(string str in data)
{
    XmlNode node = doc.CreateElement("data");
    node.innerText = str;
    root.AppendChild(node);
}
Console.WriteLine(doc.InnerXML);

Should return something like this:


<root>
    <data>field 1</data>
    <data>field 2</data>
    <data>field 3</data>
</root>

You would have to nest loops / tokenize a bit differently for nested data...

link|flag
look at his sample more carefully: there's some nesting going on there this won't account for. – Joel Coehoorn Oct 30 '08 at 21:05
I chose this as answer because it gives me a good idea of how to start. Joe's answer also helped, but this one is more complete. And thanks to Joel for pointing out additional things to consider. – webdtc Oct 30 '08 at 21:23
vote up 1 vote down

Instead of doing string concatenation, you could probably create an XmlDocument and stuff it with the appropriate XmlElement and XmlAttribute objects from your string... Then, write out the XmlDocument object...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.