Advertising banner:

History
 
 FCLF
Home • Help • A0 • Customization Tools • FCAS • Language Reference • FCLF
 
FCLF (FirstClass internal functions)
Purpose
Returns the line feed character, equivalent to Chr(10).
This is commonly used as the end of line (EOL) character on the UNIX platform.
Syntax
FCLF
Example
Dim S as String

S = "One" & fcCR & "Two" & fcLF & "Three" & fcCRLF & "Four"

Debug StrSplit(S,fcLF,2)