All fields matching regular expression will be kept, the rest will be removed.
Example
Example Input
dim_A | dim_B | dim_C | metric_1 | metric_2 |
AAA | DDD | ggg | 111 | 444 |
BBB | EEE | hhh | 222 | 555 |
CCC | FFF | iii | 333 | 666 |
Example Output
dim_A | dim_B | dim_C |
AAA | DDD | ggg |
BBB | EEE | hhh |
CCC | FFF | iii |
I Ain't Afraid of No Code!
[
[
"cutre",
{
"subtable": null,
"regex": "[^dim].*",
"_comment": null
}
]
]
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param str regex: Regex matching fields to be kept.
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.