" \" not working in join function

Hi All,

I am trying to use join function to concatenate strings

below is the if statement that I am trying to use:

if(equals(column(“DATA_TYPE”), “int”) && (equals(column(“NUMERIC_SCALE”), 0)))
{
join("^\d{0,",string(column(“NUMERIC_PRECISION”)),"}$" )
}

But the result everything else is coming except “” "slash "symbol.

Help AppreciatedCapture_if slash missing

You need to double slash.

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.