Lines 関数Lines functions
これらの関数を使用すると、テキストのリストと、バイナリおよび 1 つのテキスト値との間で変換を行えます。These functions convert lists of text to and from binary and single text values.
行Lines
関数Function | DescriptionDescription |
---|---|
Lines.FromBinaryLines.FromBinary | バイナリ値を、改行で分割されたテキスト値のリストに変換します。Converts a binary value to a list of text values split at lines breaks. |
Lines.FromTextLines.FromText | テキスト値を、改行で分割されたテキスト値のリストに変換します。Converts a text value to a list of text values split at lines breaks. |
Lines.ToBinaryLines.ToBinary | 指定されたエンコードと lineSeparator を使用して、テキストのリストをバイナリ値に変換します。指定された lineSeparator は、各行に追加されます。Converts a list of text into a binary value using the specified encoding and lineSeparator.The specified lineSeparator is appended to each line. 指定されない場合は、復帰文字と改行文字が使用されます。If not specified then the carriage return and line feed characters are used. |
Lines.ToTextLines.ToText | テキストのリストを 1 つのテキストに変換します。Converts a list of text into a single text. 指定された lineSeparator が各行に追加されます。The specified lineSeparator is appended to each line. 指定されない場合は、復帰文字と改行文字が使用されます。If not specified then the carriage return and line feed characters are used. |