hello could you help me to separate that string that I have from a list to separate it and put where it says name and password in columns of a datagrid I have already tried with slipt but I have not managed it
foreach (string item in mk.Read())
{
listBox3.Items.Add(item);
x+=item;
}
string[] words = Regex.Split(x, "=");
foreach (var item in words)
{
listBox1.Items.Add(item);
//if (item == "name")
// listBox2.Items.Add(item.Count());
}
thank you very much.