I need to know how to formulate an ADF Pipeline Expression for regexreplace, supplying a parameter @dataset().table_name.
I have the expression:
@regexreplace(@dataset().table_name, '[^a-zA-Z0-9_]', '_')
The expression builder returns the following error: Unrecognized expression: @dataset().table_name
I tried to convert the parameter to a string. However the following error is displayed: Unrecognized expression: @dataset().table_name
You can only have 1 @ symbol at the start of the expression. Try this instead:
@regexreplace(dataset().table_name, '[^a-zA-Z0-9_]', '_')