Removing "quotes" from Strings

Is this the proper way to remove " from a string:tempArray[0] = tempArray[0].replaceAll("\"","");Thanks.
[125 byte] By [douglas18a] at [2007-11-26 12:58:43]
# 1
Have you tried it?
CaptainMorgan08a at 2007-7-7 16:56:43 > top of Java-index,Java Essentials,Java Programming...
# 2
In regular expressions the backslash has special meaning. So you need to escape it.replaceAll("\\"", "");
floundera at 2007-7-7 16:56:43 > top of Java-index,Java Essentials,Java Programming...
# 3
> In regular expressions the backslash has special> meaning. So you need to escape it.Actually, this is the one case in which you must not use a double backslash. The OP has it right.
uncle_alicea at 2007-7-7 16:56:43 > top of Java-index,Java Essentials,Java Programming...