所以我試圖做的是檢索第一個項目,在列表中,以「無論」開頭的索引,我不知道如何做到這一點。如何在列表中找到一個字符串的索引
我嘗試(笑):
List<string> txtLines = new List<string>();
//Fill a List<string> with the lines from the txt file.
foreach(string str in File.ReadAllLines(fileName)) {
txtLines.Add(str);
}
//Insert the line you want to add last under the tag 'item1'.
int index = 1;
index = txtLines.IndexOf(npcID);
是啊,我知道這是不是真的事,那是錯誤的,因爲它似乎在尋找那等於npcID,而不是行中的項目從它開始。
它確實會顯示字符串的索引。請查看http://www.dotnetperls.com/indexof – Sunny 2013-05-14 03:34:19
究竟是什麼問題?如果'txtLines'是一個文本框,只需執行'txtLines.Text.IndexOf(ncpID)'。 – Matthew 2013-05-14 03:35:57
對不起,只是修復它,出於某種原因代碼沒有粘貼。哦,很好的修復 – 2013-05-14 03:37:54