Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a file which has data without any delimiter, so we are using sub string to get the data.
Now I have to give some If condition in tmap output column like this
if(!row1.source_data.startsWith(" ") && row1.source_data.substring(16, 26) != "00000000000")
{
if (row1.source_data.substring(16, 17) == "50" || row1.source_data.substring(16, 17) == "90")
{
//here just extracting the data
}
}
Now i am not able right these two if conditions in tmap output expression as it is showing different error.
Can anyone help me on this ?