Lines.FromText

The function transforms a string into a list of strings, dividing them at line breaks. If the parameter includeLineSeparators is set to true, the line break characters are also included in the resulti...

Syntax

Lines.FromText(text as text, optional quoteStyle as nullable number, optional includeLineSeparators as nullable logical) as list

About

The function transforms a string into a list of strings, dividing them at line breaks. If the parameter includeLineSeparators is set to true, the line break characters are also included in the resulting text. When QuoteStyle is set to None (default), no special quoting behavior is applied. When QuoteStyle is set to Csv, quotes are used as in comma-separated values format. Double quotes are used to enclose certain regions, and a pair of double quotes indicates a single double quote character within those regions.