Hey i'm having some trouble understanding CharSequence.
I think this will be the perfect method to help with my hw but im having trouble understanding how to use it.
How do i make the sequence < /p> comes up.
This is what i have so far:
String s = "</p>";
char c;
while(reads.hasNext()){
c = reads.next();
s = "" + c;
if (inputPath.contains(?)) {
// how do i make it return true if it contains < /p>
}
}