Hi all,
I need to replace double quotes in a string with some cahracter. Im getting the a product value from database. That product name is like this..
sri"vas
So i cant pass this value to anywhere..
So i need to cahnge double quotes with some other character..
My code is..
prodName = prodName.replac eAll("\"","$");
But it'll not work..
Please give the solution.
Thanks,
Srinivas r.
I need to replace double quotes in a string with some cahracter. Im getting the a product value from database. That product name is like this..
sri"vas
So i cant pass this value to anywhere..
So i need to cahnge double quotes with some other character..
My code is..
prodName = prodName.replac eAll("\"","$");
But it'll not work..
Please give the solution.
Thanks,
Srinivas r.
Comment