Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
536 views
in Technique[技术] by (71.8m points)

java - 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 this string at the ellipses, that is i would like to get the following output:

  1. I would

  2. surely

  3. like to

  4. go to school

  5. .

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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(""");

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...