Click here to watch in Youtube :
https://www.youtube.com/watch?v=r7Np-shVmII&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Java String [endsWith(String suffix) method] |
/* * public boolean endsWith(String suffix) * * Parameters: * ---------- * suffix - the suffix. * * Returns: * ------- * true if the character sequence represented by the * argument is a suffix of the character sequence * represented by this object; false otherwise. */ public class EndsWithDemo { public static void main(String[] args) { String str = "Welcome Peter"; boolean result = str.endsWith("Peter"); System.out.println("result = " + result); } }
result = true
https://sites.google.com/site/javaee4321/java/StringDemo_endWith_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StringDemo_endWith_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/627e98cff1455d9113a0f59150e05649fae86225/BasicJava/StringDemo_endWith_App/?at=master
See also:
No comments:
Post a Comment