String t = s;
int index = s.lastIndexOf(w);
if (index + w.length() == s.length()) {
t = s.substring(0, index);
}
Java does not have a native String method for this.
s.lastIndexOf(w) gives the index where w can be found in s starting at the end of s and moving towards the beginning, or -1 if it isn’t there.
s.lastIndexOf(w) gives the index where w can be found in s starting at the end of s and moving towards the beginning, or -1 if it isn’t there.