简体   繁体   中英

How can I read specific data from text file using C# or Vue.js?

I want to read specific data from the text file shown below :

在此处输入图片说明 .

How can I do this using C# or Vue.js?

In C#, you can read all the lines using File.ReadAllLines() (see https://docs.microsoft.com/en-us/dotnet/api/system.io.file.readalllines?view=netcore-3.1 ).

Loop through the lines (or use a Linq Where() statement) until you find the one with "total."

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM