TextFieldParser.TrimWhiteSpace Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether leading and trailing white space should be trimmed from field values.
public:
property bool TrimWhiteSpace { bool get(); void set(bool value); };
public bool TrimWhiteSpace { get; set; }
member this.TrimWhiteSpace : bool with get, set
Public Property TrimWhiteSpace As Boolean
Property Value
True
if leading and trailing white space should be trimmed from field values; otherwise, False
.
Examples
This example creates a TextFieldParser
, FileReader
, and sets the TrimWhiteSpace
property to True
.
Using FileReader As New Microsoft.VisualBasic.FileIO.
TextFieldParser("C:\ParserText.txt")
FileReader.TextFieldType =
Microsoft.VisualBasic.FileIO.FieldType.Delimited
FileReader.SetDelimiters(",")
FileReader.TrimWhiteSpace = True
End Using
Remarks
The default value for this property is True
.
Applies to
See also
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.