What is the regular expression to find double quotes at the beginning of a string in Java?
For example, I have this code:
if (allLexeme[allLexemeIter].matches("\""))
and that works for the string " this
because there is a space after the double quotes,
but does not work for the string "this
1 Answer