Regex Replace
テキスト内の正規表現マッチを置換文字列で置き換えます(\1 グループ対応)。
データRegexReplace
概要
テキスト内の正規表現マッチを置換文字列で置き換えます(\1 グループ対応)。
Replace regex matches in text with a replacement (supports \1 groups).
パラメータ
| パラメータ | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| Input text | string | 必須 | Text to process. Variables are supported. 例: {{{text}}} 変数に対応 | |
| Regex pattern | string | 必須 | 例: \s+ | |
| Replace with | string | 任意 | Use \1, \2 … to reference capture groups. 例: - 変数に対応 | |
| Store result in | variable | 必須 | 例: result |