Replace single quote using inString

0
replaceAll($StringWithSingleQuote,' ’ ',''))    I'm taking UTF value  ’ (curved) and trying to replace with a ' (straight) Issue: in the replace with section I cannot use '. I tried ''' and "'".  
asked
3 answers
5

Brian,

In replaceAll, single quote escapes single quote.  So the syntax you should use is:

Here is a video of this working:  https://youtu.be/YA3y1hJCDqg

Hope that helps,

Mike

answered
1

try using regex. You can use this website to test.

https://www.regextester.com/21

 

The regex for a single quote is

\'

 

answered
0

create the new constant type of string and put a single quotation inside it 
then you can use this in your replace all function  

answered