如何使用 C# 或 Vue.js 从文本文件中读取特定数据?
How can I read specific data from text file using C# or Vue.js?
我想从下面显示的文本文件中读取特定数据:
.
如何使用 C# 或 Vue.js 执行此操作?
在 C# 中,您可以使用 File.ReadAllLines() 读取所有行(参见 https://docs.microsoft.com/en-us/dotnet/api/system.io.file.readalllines?view=netcore-3.1)。
遍历行(或使用 Linq Where() 语句)直到找到具有 "total."
的行
我想从下面显示的文本文件中读取特定数据:
如何使用 C# 或 Vue.js 执行此操作?
在 C# 中,您可以使用 File.ReadAllLines() 读取所有行(参见 https://docs.microsoft.com/en-us/dotnet/api/system.io.file.readalllines?view=netcore-3.1)。
遍历行(或使用 Linq Where() 语句)直到找到具有 "total."
的行