gpt4 book ai didi

f# - 如何在 F# 中将文件读入一系列行

转载 作者:行者123 更新时间:2023-12-03 05:52:34 26 4
gpt4 key购买 nike

这是 C# 版本:

public static IEnumerable<string> ReadLinesEnumerable(string path) {
using ( var reader = new StreamReader(path) ) {
var line = reader.ReadLine();
while ( line != null ) {
yield return line;
line = reader.ReadLine();
}
}
}

但是直接翻译需要一个可变变量。

最佳答案

如果您使用的是.NET 4.0,则可以直接使用 File.ReadLines .

> let readLines filePath = System.IO.File.ReadLines(filePath);;

val readLines : string -> seq<string>

关于f# - 如何在 F# 中将文件读入一系列行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2365527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com