int * string list fsharp

时间:2013-02-24 22:46:13

标签: string list f# int

我如何操作以下int *字符串列表以获得"字符串"在列表中作为我的输出?

let item =[
 (12,"sausages");
 (3,"chips");
 (5,"burger");
 (19,"cheese");
 (24,"milk");
 (44,"eggs");
 ]

我开始使用listfilter。有人可以建议如何正确过滤这个吗?

2 个答案:

答案 0 :(得分:7)

简单的方法:

item |> List.map snd

答案 1 :(得分:1)

item |> List.map (fun (_, y) -> y)