Substring
開始位置と長さを指定して文字列の一部を抽出します。
データStringSubstring
概要
開始位置と長さを指定して文字列の一部を抽出します。
Extract part of a string by start index and length.
パラメータ
| パラメータ | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| Input text | string | 必須 | Text to process. Variables are supported. 例: {{{text}}} 変数に対応 | |
| Start index | number | 必須 | 0 | 0-based start position. 例: 0 変数に対応 |
| Length | number | 任意 | Number of characters (blank = to the end). 例: 5 変数に対応 | |
| Store result in | variable | 必須 | 例: result |