値の整形
フィールド値を正規表現置換、大文字/小文字変換、トリム、パディングなどで整形します。
| パラメータ | 型 | 説明 |
|---|---|---|
targetField | フィールド選択 | 整形対象フィールド |
formatType | 選択 | 整形タイプ |
pattern | テキスト | 正規表現パターン(regex_replace時) |
regexFlags | テキスト | 正規表現フラグ(g, i, m, s) |
replacement | テキスト | 置換文字列 |
padLength | 数値 | パディング長 |
padChar | テキスト | パディング文字 |
| タイプ | 説明 | 例 |
|---|---|---|
regex_replace | 正規表現置換 | 090-1234-5678 → 09012345678 |
uppercase | 大文字化 | hello → HELLO |
lowercase | 小文字化 | HELLO → hello |
trim | 前後の空白除去 | hello → hello |
pad_left | 左パディング | 42 → 00042 |
pad_right | 右パディング | 42 → 42000 |
number | 数値変換 | 1,234.5 → 1234.5 |
thousandSep | 桁区切り | 1234567 → 1,234,567 |