04-08-18, 03:28 AM
تفضل الكود
PHP كود :
String[] arr = System.IO.File.ReadAllLines("مستند نصي جديد (17).txt");
StringBuilder txt = new StringBuilder();
foreach (string s in arr)
txt.AppendLine(s.Split('\t')[1] + s.Split('\t')[2]);
this.textBox1.Text = txt.ToString();
