I am reading data from excel file and creating the | separated string one value for all the columns. But if any of the column is blank or null it is not showing in the string value but getting ignored. Also the string length is dynamic.
eg.
Excel file Input
| Column 1 | Column2 | Column 3 |
| ab | | cd |
| ef | gh | |
Currently I am getting output as below
| Concatenated Sting |
| ab|cd |
| ef|gh |
Expected Output