Replace double quotes in string

0
i have a string with double quotes and need to replace them with blank value. can you suggest how to do that.. field value : {“mail”: “test@test.com”}  
asked
1 answers
0

You can use the function replaceAll(). Read more here: https://docs.mendix.com/refguide/string-function-calls
 

replaceAll('{"mail": "test@test.com"}', '"', '')

 

answered