我正在努力做到这一点,我正在尝试,我会解释..首先,对不起我的英语..
我有这个:
int counter = 0;
string line;
System.IO.StreamReader file = new System.IO.StreamReader(@"myfile.txt");
WebClient testador = new WebClient();
while ((line = file.ReadLine()) != null)
{
string[] campos = line.Split(':');
counter++;
}
file.Close();
我需要他得到campos[0]的话,例如。坎波斯[0] = 苹果
并在其他文件 .txt 中搜索这个词,例如:myfile2.txt,然后复制接下来的 10 个字母。
再次,对不起我的英语。
编辑¹: 首先我得到 myfile.txt 中的文本,例如:MyFile.txt 的第 1 行是:“apple:yeah:test”我使用 string[] campos = line.Split(':') 来分隔,campos[ 0] = 苹果,现在.. 我需要在 myfile2.txt 中搜索苹果,并从中复制接下来的 10 个字母。
多谢你们。:D