[android-developers] Re: how to replace with in android or java ?

2012-07-11 Thread Doug
What is the context for needing to do this? Doug On Wednesday, July 4, 2012 2:32:09 AM UTC-7, hari2012 wrote: hi I am working on a project.I have stuck in a problem so please help me asap. how to replace with in android or java ? how to replace two double quotes with single double quotes

Re: [android-developers] Re: how to replace with in android or java ?

2012-07-11 Thread Chris Ruskai
In Java, I'm pretty sure the escape character is \ so you could call String.replace(\\, Replacement text); That should make the String appear as Replacement text. On Wed, Jul 11, 2012 at 3:03 AM, Doug beafd...@gmail.com wrote: What is the context for needing to do this? Doug On