The regex that matches the whole input ".*". In java, it looks like this:
String regex = "\".*\"";
System.out.println("\"this is a simple sentence\"".matches(regex)); // true
System.out.println("this is a simple sentence".matches(regex)); // false
System.out.println("this is a simple sentence\"".matches(regex)); // false
If you want to remove the quotes, use this:
String input = "\"this is a simple sentence\"";
input = input.replaceAll("(^\"|\"$)", "")); // this is a simple sentence (without any quotes)
If you want this to work over multiple lines, use this:
String input = "\"this is a simple sentence\"\n\"and another sentence\"";
System.out.println(input + "\n");
input = input.replaceAll("(?m)(^\"|\"$)", "");
System.out.println(input);
which produces output:
"this is a simple sentence"
"and another sentence"
this is a simple sentence
and another sentence
Explanation of regex (?m)(^"|"$):
(?m) means "Caret and dollar match after and before newlines for the remainder of the regular expression"
(^"|"$) means ^" OR "$, which means "start of line then a double quote" OR "double quote then end of line"
".*"(as regexp), should look like this if you enter it as string"\".*\""– Kaj Jul 8 '11 at 6:38.*doesn't allow for new-line characters, so that would be an issue for me. @Jon Skeet, I want to get a match of the first and last character when they're both a quotation mark. If that makes sense. – Sinker Jul 8 '11 at 6:46DOTALLflag set, or prepend the pattern string with(?s). See the example that I now have posted. It prints start and end position. – Kaj Jul 8 '11 at 6:50