El método Java String EndsWith() comprueba si la string termina con un sufijo especificado. Este método devuelve un valor booleano verdadero o falso.
Firma:
public boolean endsWith(String suff)
Parámetro:
suff- specified suffix part
Devolver:
true or false
Ejemplo: Para mostrar el funcionamiento del método extremosCon()
// Java program to demonstrate // working of endsWith() method class Gfg1 { public static void main(String args[]) { String s = "Welcome! to GeeksforGeeks"; // Output will be true as s ends with Geeks boolean gfg1 = s.endsWith("Geeks"); System.out.println(gfg1); } }
Producción:
true
// Java program to demonstrate // working of endsWith() method class Gfg2 { public static void main(String args[]) { String s = "Welcome! to GeeksforGeeks"; // Output will be false as s does not // end with "for" boolean gfg2 = s.endsWith("for"); System.out.println(gfg2); } }
Producción:
false
// Java program to demonstrate // working of endsWith() method class Gfg3 { public static void main(String args[]) { String s = "Welcome! to GeeksforGeeks"; // Output will be true if the argument // is the empty string boolean gfg3 = s.endsWith(""); System.out.println(gfg3); } }
Producción:
true
Publicación traducida automáticamente
Artículo escrito por Niraj_Pandey y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA