" inside a String

Hello how can I say I want to compare a " character or introduce it inside a String.ie:String t="whatever "still on the String" ";I mean havind the " inside the String definition;
[207 byte] By [MelGohana] at [2007-10-3 6:50:14]
# 1
do you want to display the character "
invalidParametera at 2007-7-15 1:40:57 > top of Java-index,Java Essentials,Java Programming...
# 2
well I can use a + and the char " to add that character into the String but is there a way to use the " inside a String? for example fot have it inside a compareTo method.
MelGohana at 2007-7-15 1:40:57 > top of Java-index,Java Essentials,Java Programming...
# 3
You have have it by using the delimitter and if you want th compare it the use the charAt method of that index and compare it...eg. String = " Display \" ";it will generate the output as : Display "
invalidParametera at 2007-7-15 1:40:57 > top of Java-index,Java Essentials,Java Programming...
# 4
By using escape sequence\"we can introduce character " in a string
chandra.ta at 2007-7-15 1:40:57 > top of Java-index,Java Essentials,Java Programming...
# 5
ok ,thanks to both!
MelGohana at 2007-7-15 1:40:57 > top of Java-index,Java Essentials,Java Programming...