Visual Basic 中读取逗号分隔的文本文件
Posted icaowu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Visual Basic 中读取逗号分隔的文本文件相关的知识,希望对你有一定的参考价值。
TextFieldParser
对象提供一种可以轻松而高效地分析结构化文本文件(如日志)的方法。 TextFieldType
属性用于定义文件是带分隔符的文件还是具有固定宽度文本字段的文件。
Dim currentRow As String() While Not MyReader.EndOfData Try currentRow = MyReader.ReadFields() Dim currentField As String For Each currentField In currentRow MsgBox(currentField) Next Catch ex As Microsoft.VisualBasic. FileIO.MalformedLineException MsgBox("Line " & ex.Message & "is not valid and will be skipped.") End Try
https://docs.microsoft.com/zh-cn/dotnet/visual-basic/developing-apps/programming/drives-directories-files/how-to-read-from-text-files-with-multiple-formats
https://docs.microsoft.com/zh-cn/dotnet/visual-basic/developing-apps/programming/drives-directories-files/how-to-read-from-comma-delimited-text-files
以上是关于Visual Basic 中读取逗号分隔的文本文件的主要内容,如果未能解决你的问题,请参考以下文章
我初学matlab,现在需要完成用MATLAB读取TXT文本数据存于结构体,文本数据以逗号作为分隔。