You should be able to ‘escape’ the quote sign with another quote sign.
replaceAll($description, '''', '-')
Hi Andrea,
You can do this with a single quote. A single quote escapes single quote:
https://forum.mendix.com/link/questions/88832
So: replaceAll($description, '’’’, '-’)
Hope this helps!
Thanks both, It works like a charm!