RowDelimiter Parameter (Connect-CSV Cmdlet)
Specifies the character or sequence of characters that the provider uses to detect the end of a row in a text file.
Syntax
Connect-CSV -RowDelimiter string
Data Type
cstr
Default Value
""
Remarks
You do not need to set this property if the file already uses standard newline delimiters such as \r, \n, \r\n, or \n\r.
This property supports hexadecimal delimiters. The cmdlet treats any value starting with 0x (for example, "0x01") as a hexadecimal rather than a string literal delimiter.
Hexadecimal delimiters do not support escape sequences.
This property is useful for defining custom row boundaries when working with non-standard text file formats.