数値、日付、時刻、datetime、datetimezone、論理、期間、またはバイナリ値のテキスト表現を返します。Returns the text representation of a number, date, time, datetime, datetimezone, logical, duration or binary value.値が null 値の場合、Text.From では null 値を返します。If a value is null, Text.From returns null.指定された culture に従ってテキスト値の書式を設定するには、省略可能な culture パラメーターを使用します。The optional culture parameter is used to format the text value according to the given culture.
テキスト形式の表記 (value) から値をデコードし、適切な型の値として解釈します。Decodes a value from a textual representation, value, and interprets it as a value with an appropriate type.Value.FromText はテキスト値を受け取り、数、論理値、NULL 値、DateTime 値、期間値、またはテキスト値を返します。Value.FromText takes a text value and returns a number, a logical value, a null value, a DateTime value, a Duration value, or a text value.空のテキスト値は NULL 値として解釈されます。The empty text value is interpreted as a null value.
文字数の個数について、0 から始まるオフセットで始まるテキスト値の文字数を返します。Returns a number of characters from a text value starting at a zero-based offset and for count number of characters.
テキスト値から、文字または文字の一覧をすべて削除します。Removes all occurrences of a character or list of characters from a text value.removeChars パラメーターは、文字の値または文字の値の一覧とすることができます。The removeChars parameter can be a character value or a list of character values.
テキスト値 substring がテキスト値の文字列内で見つかった場合は true、それ以外の場合は false を返します。Returns true if a text value substring was found within a text value string; otherwise, false.
文字列内で最初に見つかった substring を返し、startOffset で始まる位置を返します。Returns the first occurrence of substring in a string and returns its position starting at startOffset.
区切り記号で区切られた個々の値を含む、すべてのテキスト値を結合した結果のテキスト値を返します。Returns a text value that is the result of joining all text values with each value separated by a separator.
長さが最小文字数以上になるように、先頭に埋め込まれたテキスト値を返します。Returns a text value padded at the beginning with pad to make it at least length characters.埋め込みが指定されていない場合、空白文字が埋め込みとして使用されます。If pad is not specified, whitespace is used as pad.