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 trialTan Yang
13,163 PointsIn the getWords() method, it returns an array of String, why it prompted that 11 words were expected?
I passed parameters by BlogPost constructor, please check my code.
package com.example;
import java.util.Date;
public class BlogPost {
private String mAuthor;
private String mTitle;
private String mBody;
private String mCategory;
private Date mCreationDate;
public BlogPost(String author, String title, String body, String category, Date creationDate) {
mAuthor = author;
mTitle = title;
mBody = body;
mCategory = category;
mCreationDate = creationDate;
}
public String getAuthor() {
return mAuthor;
}
public String getTitle() {
return mTitle;
}
public String getBody() {
return mBody;
}
public String getCategory() {
return mCategory;
}
public Date getCreationDate() {
return mCreationDate;
}
public String[] getWords(){
BlogPost blogpost = new BlogPost("asdf", "asdf fd ds", "fd dfs sdf fdfd ", "et we fdsa sdf dsa", new Date());
String[] abc = blogpost.getBody().split("\\s+");
return abc;
}
}
2 Answers
Yanuar Prakoso
15,196 PointsHi Tan
You do not need to write this much code. Moreover since you are still in the same class there is no need to call the getBody() method to gain the mBody String variable from the same class. Here is my revision for your original code.
public String[] getWords(){
/*You do not need all of these code:
BlogPost blogpost = new BlogPost("asdf", "asdf fd ds", "fd dfs sdf fdfd ", "et we fdsa sdf dsa", new Date());
String[] abc = blogpost.getBody().split("\\s+");
return abc;
*/
//All you need is to code:
return mBody.split("\\s+");
}
PS: do not forget to import java.util.Arrays; since you want to return arrays of Strings.
I hope this can help a little.
Shaun Sweeney
6,216 Pointstry this. Need to add a ^ in the regex expression.
return mBody.split("^\s+");
Tan Yang
13,163 PointsTan Yang
13,163 PointsThank you for your answer.)