Java String.endsWith() Java Java String The method endsWith() is a convenience method that checks if a String ends with another given String. If the argument is an empty String, then the method returns true. Available Signatures public boolean endsWith(String suffix) Example @Test public void whenCallEndsWith_thenCorrect() { String s1 = “test”;… Continue Reading string-ends-with