I am trying to replace single quote in a string with double quote using replace function with data factory expressions.
For example, replace single quote in the following string
hello'world ---> hello''world
@replace(pipeline().parameters.tst,''','''')
The above code is not working. Need help in fixing the code


