Replace multiple single quotes in string
Hi Frinds,I have a string
--------------
saravanan \' krish
here i tried to replace the \' with %% like below.
-------------------------------------------------------------
NotificationTitle.replace("\'", "%%") its working fine.
But now the string was
-----------------------
saravanan \' krish \' logu \' mani \'
the out put was
----------------
saravanan %% krish \' logu \' mani \'
I couldnt replace remain \' characters with the %%....when i having multiple single quotes am not able to replace more then one \' how to replace all \' with %%
how to achieve via javascript????
Thanks
