Divide/split a string on quotation marks
I have the following string:
I would "surely" like to "go to school".
Now, I would like to split开发者_JAVA百科 this string at the ellipses, that is i would like to get the following output:
I would
surely
like to
go to school
.
I case you meant quotation mark ("
) instead of ellipsis, the easiest solution is to use String.split
:
String text = "I would \"surely\" like to \"go to school\".";
String[] result = text.split("\"");
精彩评论