Regex Extract
テキストから最初の正規表現マッチ(またはキャプチャグループ)を抽出します。
データRegExExtractor
概要
テキストから最初の正規表現マッチ(またはキャプチャグループ)を抽出します。
Extract the first regex match (or a capture group) from text.
パラメータ
| パラメータ | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| Input text | string | 必須 | Text to process. Variables are supported. 例: {{{text}}} 変数に対応 | |
| Regex pattern | string | 必須 | 例: \d+ | |
| Capture group | number | 任意 | 0 | 0 = whole match, 1 = first group, ... 例: 0 変数に対応 |
| Store result in | variable | 必須 | 例: result |