Lines.FromTextLines.FromText
構文Syntax
Lines.FromText(text as text, optional quoteStyle as nullable number, optional includeLineSeparators as nullable logical) as list
バージョン情報About
テキスト値を、改行で分割されたテキスト値のリストに変換します。Converts a text value to a list of text values split at lines breaks. includeLineSeparators が true の場合、改行文字はテキストに含まれます。If includeLineSeparators is true, then the line break characters are included in the text.
QuoteStyle.None:
(既定) 引用符の動作は必要ありません。QuoteStyle.None:
(default) No quoting behavior is needed.QuoteStyle.Csv:
引用符は CSV に従います。QuoteStyle.Csv:
Quoting is as per Csv. 二重引用符文字は、該当の領域を囲むために使用されます。また、二重引用符文字のペアは、該当する領域内で 1 つの二重引用符文字を囲むために使用します。A double quote character is used to demarcate such regions, and a pair of double quote characters is used to indicate a single double quote character within such a region.