TextFieldParser.TextFieldType 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出剖析的檔案是分隔的檔案,還是固定寬度的檔案。
public:
property Microsoft::VisualBasic::FileIO::FieldType TextFieldType { Microsoft::VisualBasic::FileIO::FieldType get(); void set(Microsoft::VisualBasic::FileIO::FieldType value); };
public Microsoft.VisualBasic.FileIO.FieldType TextFieldType { get; set; }
member this.TextFieldType : Microsoft.VisualBasic.FileIO.FieldType with get, set
Public Property TextFieldType As FieldType
屬性值
TextFieldType 值,指出要剖析的檔案是分隔的檔案,還是固定寬度的檔案。
範例
這個範例會 TextFieldParser
建立 、 FileReader
,並指定其分隔。
Using FileReader As New Microsoft.VisualBasic.FileIO.
TextFieldParser("C:\ParserText.txt")
FileReader.TextFieldType =
Microsoft.VisualBasic.FileIO.FieldType.Delimited
FileReader.SetDelimiters(",")
End Using
這個範例會 TextFieldParser
建立 、 FileReader
,並指定它是固定寬度。
Using FileReader As New Microsoft.VisualBasic.FileIO.
TextFieldParser("C:\ParserText.txt")
FileReader.TextFieldType =
Microsoft.VisualBasic.FileIO.FieldType.FixedWidth
FileReader.FieldWidths = New Integer() {5, 10, 11, -1}
End Using
備註
此屬性的預設值會分隔。
下表列出涉及 TextFieldType
屬性的工作範例。
收件者 | 請參閱 |
---|---|
從分隔的文字檔讀取 | 作法:從逗號分隔文字檔讀取 |
從固定寬度文本檔讀取 | 作法:從固定寬度的文字檔讀取 |
從具有多種格式的文字檔讀取 | 作法:以多種格式從文字檔讀取 |