Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Data Structures Organizing Data Splitting Strings

Sonam Klein
Sonam Klein
858 Points

I get what im supposed to do in theory, but im not sure about the syntax. Couldn't find an answer in the forums.

Like the question says, so I'm supposed to write a method which returns the words of the body of the blog using the regular expression pattern to identify the words, but im not sure about the syntax. Any help would be great, thanks in advance

1 Answer

Jeff Wilton
Jeff Wilton
16,646 Points

I'd prefer to see your attempt, so I can better help you, but here is what I came up with:

public String[] getWords() {
     return mBody.split("\\s+"); 
}
Sonam Klein
Sonam Klein
858 Points

ah thanks for the answer, i had

public String getWords(){ return body.split("\s+"); }