How Replace " by #

hi

i want to know how to replace the " in a string by # or '?

Thanks,
kalishwari

Use following

StrReplace.Replace(“”“”,“?”)

hi @Kalishwari

StrVar.replace(“'”,“#”).ToString

Thanks
Ashwin S

Hi @Kalishwari,
You cannot replace odd ‘’ because it represents string format.You can replace even “” with # or any character.You will not faceany issues while replacing anyother charactersstring.xaml (5.4 KB)

Thanks,
Sreekanth.k