在列表框中搜索字符串

时间:2012-09-18 20:54:42

标签: c# string string-comparison

我很难找到列表框中的字符串,我的字符串NombreCompleto由我之前从文件(ESSD)读取的3个字符串组成,在我恢复此字符串后,我想知道这是否字符串在我的listbox3中,我尝试了几种方法,但它似乎没有用。 这是我的代码。

foreach (string h in Directory.EnumerateFiles(NomDirec, "resume*"))
{
   this.listBox1.Items.Add(h);
    var NombreLinea = File.ReadLines(h);
    foreach (string item in NombreLinea)
    {
        NombreAbuscar.Add(item.Remove(item.IndexOf(':')));
        this.listBox3.Items.Add(item.Remove(item.IndexOf(':')));

}

foreach (string t in Directory.EnumerateFiles(NomDirec, "ESSD1*"))
{
    string[] Nombre = File.ReadLines(t).ElementAtOrDefault(6).Split(':');
    string[] ApellidoPat = File.ReadLines(t).ElementAtOrDefault(7).Split(':');
    string[] ApellidoMat = File.ReadLines(t).ElementAtOrDefault(8).Split(':');
    string NombreCompleto = ApellidoPat[1]+" "+ ApellidoMat[1] +","+" "+ Nombre[1];
    string Nom2 = NombreCompleto.ToString();

    int index = listBox3.FindString(Nom2);
    if (index != -1)
    {
        this.listBox1.Items.Add(t);
        MessageBox.Show("Find It");
    }
    else { MessageBox.Show("Not Found :@"); }
}

3 个答案:

答案 0 :(得分:1)

您可以尝试使用此代码 - based on Linq operator Where, ...

var selectedItems = from li in listBox3.Items
                    where li.Text == Nom2
                    select li.Text;

if(selectedItems.Any()) 
.... 

答案 1 :(得分:0)

试试这个:

                            int index = -1;
                            for (int i = 0; i < listBox3.Items.Count; ++i)
                               if (listBox3.Items[i].Text == Nom2) { index = i; break; }
                            if (index != -1)
                            {
                                this.listBox1.Items.Add(t);
                                MessageBox.Show("Find It");
                            }
                            else { MessageBox.Show("Not Found :@");

答案 2 :(得分:0)

查找某个字符串是否在列表框中非常简单。

private void btnAddRecipe_Click(object sender, EventArgs e)
{
    bool DoesItemExist = false;
    string searchString = txtRecipeName.Text;
    int index = lstRecipes.FindStringExact(searchString, -1);

    if (index != -1) DoesItemExist = true;
    else DoesItemExist = false;

    if (DoesItemExist)
    {
       //do something
    }
    else
    {
        MessageBox.Show("Not found", "Message", MessageBoxButtons.RetryCancel, MessageBoxIcon.Stop);
    }

    PopulateRecipe();
}