I need my Java program to take a string like:

"This is a sample sentence."

and turn it into a string array like:

{"this","is","a","sample","sentence"}

No periods, or punctuation (preferably). By the way, the string input is always one sentence.

Is there an easy way to do this that I'm not seeing? Or do we really have to search for spaces a lot and create new strings from the areas between the spaces (which are words)?

link|improve this question

You may also want to look at the guava Splitter class: guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/… – dkarp Jan 12 '11 at 22:51
feedback

5 Answers

up vote 4 down vote accepted

String.split() will do most of what you want. You may then need to loop over the words to pull out any punctuation.

For example:

String s = "This is a sample sentence.";
String[] words = s.split("\\s+");
for (int i = 0; i < words.length; i++) {
    // You may want to check for a non-word character before blindly
    // performing a replacement
    // It may also be necessary to adjust the character class
    words[i] = words[i].replaceAll("[^\w]", "");
}
link|improve this answer
feedback

You can also use BreakIterator.getWordInstance.

link|improve this answer
Wow. The documentation for that looked really nice. An easy way to find the words in the string. – AnimatedJuzz Jan 13 '11 at 0:24
feedback

The easiest and best answer I can think of is to use the following method defined on the java string -

String[] split(String regex)

And just do "This is a sample sentence".split(" "). Because it takes a regex, you can do more complicated splits as well, which can include removing unwanted punctuation and other such characters.

link|improve this answer
You're right, that worked fine. – AnimatedJuzz Jan 12 '11 at 23:07
feedback

Use string.replace(".", "").replace(",", "").replace("?", "").replace("!","").split(' ') to split your code into an array with no periods, commas, question marks, or exclamation marks. You can add/remove as many replace calls as you want.

link|improve this answer
Correct, that works well for removing punctuation. – AnimatedJuzz Jan 12 '11 at 23:07
1  
Rather than calling replace 4 times, it would be better to just call it once with a regex that captures any of the 4 items. – jzd Jan 12 '11 at 23:40
feedback

Try this:

String[] stringArray = Pattern.compile("ian").split(
"This is a sample sentence"
.replaceAll("[^\\p{Alnum}]+", "") //this will remove all non alpha numeric chars
);

for (int j=0; i<stringArray .length; j++) {
  System.out.println(i + " \"" + stringArray [j] + "\"");
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.