I have input fixed width txt file as source.
test file sample below
column_1 |
---|
12ABC3455 |
13XYZ5678 |
How to build dynamic column pattern to produce derived columns.
column Name : empId -> substring(column_1,1,2)
I can hardcode the empid in & substring(column_1,1,2) in expression.
but i need to make it dynamic with the JSON input to derive dynamic derived columns with column pattern.
Below sample JSON input parameter.
My input JSON formatted parameter
[
{
"colname": "empid",
"startpos": 1,
"length": 2
},
{
"colname": "empname",
"startpos": 3,
"length": 3
},
{
"colname": "empSal",
"startpos": 6,
"length": 4
}
]
help me to build the column pattern with the json input