I want to check the value of a char to see if it is double quote or not in Java. How can I do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
If you want to compare a String with another one, and test if the other string only contains the double quote char, then you must escape the double quote with a \ :
|
|||
|
|
|
If you are dealing with a
If c is equal to the double quote the expression will evaluate to So, you can do something like this:
On the other hand, if you don't have a
|
|||
|
|
|
For checking double quote is present in a string, following code can be used. Double quote have 3 different possible ascii values.
|
||||
|
|
