List Find & Findindex

简介: static void Main(string[] args) {     List dataList = new List();     for (int i=0;i    {         dataList.

static void Main(string[] args)
{
    List dataList = new List();
    for (int i=0;i
    {
        dataList.Add("string" + i);
    }

    string result = dataList.Find(destStr => destStr == "string10");
    int index = dataList.FindIndex(0, dataList.Count, destStr => destStr == "string10");
    int index2 = dataList.FindIndex(0, dataList.Count, destStr => destStr == "string3");
    if(index2 != -1)
        dataList.RemoveAt(index2);

    Console.ReadLine();
}


参考:

http://www.cnblogs.com/zhangchenliang/archive/2012/08/15/2640396.html

相关文章
|
4月前
|
JavaScript 前端开发 索引
JS中常用的数组迭代方法(filter,forEach,map,every,some,find,findIndex)
这段代码和说明介绍了JavaScript中数组的一些常用方法。函数接收三个参数:`item`(数组项的值)、`index`(项的位置,可选)和`array`(数组本身,可选)。示例展示了如何使用`filter()`过滤非空项、`forEach()`遍历数组、`map()`处理并返回新数组、`every()`检查所有元素是否满足条件、`some()`检查是否存在满足条件的元素、`find()`获取首个符合条件的元素值以及`findIndex()`获取其索引位置。这些方法都不会修改原数组。
JS中常用的数组迭代方法(filter,forEach,map,every,some,find,findIndex)
|
4月前
|
JavaScript 前端开发 索引
find 和 findIndex 的讲解和实现
`findIndex` 是 JavaScript 数组方法,用于查找数组中满足条件元素的索引。语法:`array.findIndex(callback[, thisArg])`。`callback` 定义查找条件,并可接收元素、索引和数组自身作为参数。`findIndex` 从头遍历数组,找到首个符合条件的元素即返回其索引,未找到则返回 -1。
65 2
|
JavaScript 索引
JS数组常用方法(超级详细,含理解) push、pop、unshift、shift、splice、slice、concat、join、revres、indexOf、sort、filter、map
JS数组常用方法(超级详细,含理解) push、pop、unshift、shift、splice、slice、concat、join、revres、indexOf、sort、filter、map
332 0
|
索引
ES6——find()、findindex()、indexof、includes()以及some
find()、findindex()、indexof、includes()以及some
115 0
|
索引
Array.forEach()
Array.forEach()
86 0
常见遍历方法 for循环、forEach、map、filter、find、findIndex、some、every
常见遍历方法 for循环、forEach、map、filter、find、findIndex、some、every
184 0
find
find
92 0
|
算法 容器
常用查找算法 find() find_if() adjacent_find() binary_search() count() count_if()
常用查找算法 find() find_if() adjacent_find() binary_search() count() count_if()
Find a way
Pass a year learning in Hangzhou, yifenfei arrival hometown Ningbo at finally. Leave Ningbo one year, yifenfei have many people to meet. Especially a good friend Merceki.
147 0