Hi Experts, I am trying to replace β curly open and closed quotes with straight quotes. Could somebody help please.
Hi @rahul_gola
can you try this lets say you have a variable -Test
Test.Replace ('β', '"')
one more approach we can work with html code too
Test.Replace (chr(147),chr(34))
@nikhil.girish Thank you for the quick response, i will check and let you know now.
did it work @rahul_gola if so can u share a sample of input and output
@nikhil.girish it has worked. i am able to get the output as " straight quotes. Thank you.
so the input text was rahuβl for and i am getting the out now as expected output: rahu"l
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.