String replace

I'm trying to go through a string and do two things:

Replace all "," with line breaks.

Replace all " with nothing, i.e. delete them

How would I do this?

[178 byte] By [thefila] at [2007-11-27 11:50:39]
# 1

String.replaceAll();

http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#replaceAll(java.lang.String,%20java.lang.String)

hunter9000a at 2007-7-29 18:33:11 > top of Java-index,Java Essentials,New To Java...
# 2

String eol = System.getProperty("line.separator");

str = str.replace("," eol).replace("\"", "");

jverda at 2007-7-29 18:33:11 > top of Java-index,Java Essentials,New To Java...