在飞镖语言列表中找到索引值

时间:2019-12-20 09:43:34

标签: dart

我有一个列表

var lst = [ "test0" , "test1" , "test2" , "test3"];

我想在此列表中搜索并找到“ test2”索引。 飞镖语言中有这样的功能吗?

//lst.find("test2") -> 2

1 个答案:

答案 0 :(得分:2)

您可以使用List.indexOf

lst.indexOf('test2');