Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のint*stringリストを操作して、リスト内の「文字列」部分だけを出力として取得するにはどうすればよいですか?
let item =[ (12,"sausages"); (3,"chips"); (5,"burger"); (19,"cheese"); (24,"milk"); (44,"eggs"); ]
私はlistfilterから始めました。誰かがこれを適切にフィルタリングする方法をアドバイスできますか?
簡単な方法:
item |> List.map snd
item |> List.map (fun (_, y) -> y)