Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Francis Ojuok
1,116 PointsWhich method on String will allow you to check if one String is part of another. String someWords = "These are words";
Discouraged and confused
4 Answers

andren
28,520 PointsThe method is contains
, it was shown off and explained in the video directly preceding the quiz.

August Oliver
5,933 PointsString someWords = "These are words";
someWords.contains("words");

Simon Coates
28,692 Pointsthe answer is the contains method. If you get stuck on methods available on classes, you can consult the online documentation. eg. https://docs.oracle.com/javase/7/docs/api/java/lang/String.html#contains(java.lang.CharSequence)

batsirai chitare
759 Pointsi have used contains