注: 以下の翻訳の正確性は検証されていません。AIPを利用して英語版の原文から機械的に翻訳されたものです。
サポート対象: Batch, Streaming
サブストリングを抽出します。
式のカテゴリ: 数値
出力タイプ: String
引数の値:
string
start
length
string | start | length | 出力 |
---|---|---|---|
hello, world | 1 | 5 | hello |
hello, world | 8 | 5 | world |
hello, world | -5 | 5 | world |
説明: Length が指定されていない場合、サブストリングは文字列の終わりまで続きます。 引数の値:
string
start
string | start | 出力 |
---|---|---|
hello, world | 1 | hello, world |
hello, world | 8 | world |
hello, world | -5 | world |
説明: Null の場合、出力は常に null です。 引数の値:
string
start
length
string | start | length | 出力 |
---|---|---|---|
null | 1 | 5 | null |
hello, world | null | 5 | null |
hello, world | 1 | null | null |
null | null | null | null |
説明: Length が残りのサブストリングよりも長い場合、出力は文字列の終わりまでのサブストリングです。 引数の値:
string
start
length
string | start | length | 出力 |
---|---|---|---|
hello, world | -5 | 10 | world |
hello, world | 1 | 20 | hello, world |
hello, world | 12 | 5 | d |
hello, world | 13 | 5 | 空の文字列 |
hello, world | 20 | 5 | 空の文字列 |
hello, world | 12 | -5 | 空の文字列 |