Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
StringHandling.CHANGE(row2.LONGNOTES,"\"\"", "")
Hi team
I am new with talend, I am trying to replace the double quotes with blank string, I tried below expressions in tMap
StringHandling.EREPLACE(RemoveXXX.Org_Id,"\"","")
StringHandling.EREPLACE(RemoveXXX.Org_Id,"\"\"","")
StringHandling.CHANGE(RemoveXXX.Org_Id,"\"","")
StringHandling.CHANGE(RemoveXXX.Org_Id,"\"\"","")
but all above four not working, kindly help on priority
Hi TRF,
Thanks for your quick response,
I have tried below things , check them with result
RemoveXXX.Org_Id.replaceAll("\"\"", "") - Not Worked
RemoveXXX.Org_Id.replaceAll("\"", "") - Not Worked
RemoveXXX.Org_Id.replaceAll("\\"\\"", "") - Given below error
Detail Message: Syntax error on tokens, delete these tokens
What is wrong going on processing..
Sorry but RemoveXXX.Org_Id.replaceAll("\\\"", ""); this is also not worked
Hi Team
The issue is resolved after debug, It was mapping issue I was using previous to previous tmap output to the current map field
Thanks for your support