Lacking the know how to read the data that is being fed into a text file, here is what I have so far
try
{
StreamReader sr = new StreamReader(@"C:\\Program Files (x86)\\Python Data\\Rolldata.txt");
line = sr.ReadLine();
while (line != null)
{
Console.WriteLine(line);
textBox1.Text = line;
line = sr.ReadLine();
}
sr.Close();
Console.ReadLine();
}
This simply extracts the data and put it's to a writeline so I am able to physically see it, but how do I parse the data in a way that specific pairs of data such as {id: 1}
or {foobar:foobar}
can be read with only their specific attached data?
Due to requests, I will elaborate and show the data
{'updated_at': None, 'roll': 3, 'hash': 'f114b7a0fd714256015b5a420ebe974f3977c53d3a3423f8532b58b69a6f3aa5', 'state': 3, 'created_at': None, 'id': 9947837}{'updated_at': None, 'roll': 9, 'hash': '4e2a94657c9ca2c9206369d64fb84b03520875f870389bee1604fa4f74ef0cfa', 'state': 3, 'created_at': None, 'id': 9947838}{'updated_at': None, 'roll': 0, 'hash': 'd5dc5c3378724deb071ae6bdaa0cfb05222db68e4afc441d9138f0e84609fc4c', 'state': 3, 'created_at': None, 'id': 9947839}
I want to extract the id and the roll and pair them together if possible
I find it handy with
File.ReadAllText
likeand you can post the content of the file and your expected output to read data in pairs. Whereas Split, Regex are going to help you read that kind of data but I think your string might be a JSON string and thus it could be much more easier way to get the data.