标签: dart
我有一个列表
var lst = [ "test0" , "test1" , "test2" , "test3"];
我想在此列表中搜索并找到“ test2”索引。 飞镖语言中有这样的功能吗?
//lst.find("test2") -> 2
答案 0 :(得分:2)
您可以使用List.indexOf。
lst.indexOf('test2');