Reading a Log and Extracting Data
Ok here is my situation. I have a text document that I extracted from another program with lots of raw data. I would like to create a program to search this raw text document that pull certain parts from it and place that info into a datagrid or an array or anything at all, just pulling the data is what I need. Here is an example:
(Note the Raw Data is formatted very well)
Text Doc:
["Guild"] = "Guild Name",
["DBversion"] = "1.1",
["DateExtracted"] = "07/14/05 02:27:30",
["Hour"] = 3,
["Locale"] = "enUS",
["Members"] = {
["Member1"] = {
["Note"] = "",
["Class"] = "Fighter",
["Level"] = 31,
},
["MemberX"] = {
["Note"] = "",
["Class"] = "Warrior",
["Level"] = 33,
},
I would like to pull the memeber names with the info in their tag and put it into a string so that I could later format it into HTML code. If you know of any other way to approach this problem please help me out. Thanks. Any questions please post.
Placing into a Datagrid I believe would allow me the most opitions when converting it to HTML to place into a table because of the sorting abilities, so that would be awesome if someone could help with that, but any help would be good. Thank you.

