Hi
we are getting names from services some times the name contains " in it, how to replace the " in data transform
Hi
we are getting names from services some times the name contains " in it, how to replace the " in data transform
Please give a try with the below mentioned function. This function will help you to remove all special characters and spaces from input values.
Function = @toJavaIdentifierNoReplacing(Param.Customer_Name)
Please find screen-shot for reference.
@saikiranp1526 You need to escape the double quote character . Try using replaceAll(Param.Name,“"”,“”)
@shanr2 ,
Thanks, it worked with the given syntax