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