this c# code is probably not the most efficient but gets what I want done.
How do I accomplish the same thing in F# code?
string xml = " <EmailList> " +
" <Email>test@email.com</Email> " +
" <Email>test2@email.com</Email> " +
" </EmailList> ";
XmlDocument xdoc = new XmlDocument();
XmlNodeList nodeList;
String emailList = string.Empty;
xdoc.LoadXml(xml);
nodeList = xdoc.SelectNodes("//EmailList");
foreach (XmlNode item in nodeList)
{
foreach (XmlNode email in item)
{
emailList += email.InnerText.ToString() + Environment.NewLine ;
}
}
If you actually want the final trailing newline you can add it in the map and String.concat with the empty string.
The same with the F# Data XML Type Provider:
How about something along the lines of:
Here is similar code to do this in F#. I'm sure one of the F# ninja's will put a better version up here in a minute.
If you look at your code, you have a couple of things going on. The first is loading the collection for the Email nodes, and the second is actually doing something meaningful with them.
First, you'd want to have your function return a collection. Something like (and I'm on my Mac, so this may not work):
Now the question comes around what you want to do with that collection. In your example above, you were concatenating it, or basically storing state.
From a C# perspective, you can then start using things like the answers from this question (using LINQ) and this one.
From an F# perspective, you now have a list and can simply use the normal procedures for a list like this one or here.
You can also look at LINQ to XML (or at the 5 minute overview) to get some more ideas.