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
296 views
in Technique[技术] by (71.8m points)

java - How to split sentence to words and punctuation using split or matcher?

I need to split sentence to words and punctuation marks, and place em into list, saving their sequence.

For example: "Some text here!". And result should be: List(Some, ,text, , here,!)

I'm using String.split("regex"); With "split" I can split text only by word or only by punctuation.

So what should I use, to split text by words and punctuation at same time? Thank you in advance.

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Based on

And result should be: List(Some, ,text, , here,!)

it looks like you want to split on word boundaries split("\b").

String data = "Some text here!";
for (String s : data.split("\b")){
    System.out.println("'"+s+"'");
}

Output:

'Some'
' '
'text'
' '
'here'
'!'

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

...