Purpose
Returns the carriage return and line feed characters, equivalent to Chr(13) and Chr(10).
This is commonly used as the end of line (EOL) character on the Windows platform.
Syntax
FCCRLF
Example
Dim S as String
S = "One" & fcCR & "Two" & fcLF & "Three" & fcCRLF & "Four"
Debug StrSplit(S,fcCRLF,2)
|