Tuesday 10 May 2016

Java Tutorial : Java StringBuilder [lastIndexOf(String str) method]


Click here to watch in Youtube :
https://www.youtube.com/watch?v=vwBgURwaZyk&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java StringBuilder [lastIndexOf(String str) method] 
StringBuilderDemo.java
/*
 * public int lastIndexOf(String str)
 * 
 * Parameters: 
 * ---------- 
 * str - the substring to search for.
 * 
 * Returns: 
 * ------- 
 * if the string argument occurs one or
 * more times as a substring within this object, then
 * the index of the first character of the last such
 * substring is returned. If it does not occur as a
 * substring, -1 is returned.
 */
public class StringBuilderDemo
{

    public static void main(String[] args)
    {
        String str = "Welcome.com";
        StringBuilder sb = new StringBuilder(str);
        System.out.println("sb = "+sb);

        //Returns 8
        int indexPosition = sb.lastIndexOf("com");
        System.out.println("lastIndexOf(\"com\") = " + indexPosition);

        indexPosition = sb.lastIndexOf("abc");
        System.out.println("lastIndexOf(\"abc\") = " + indexPosition);
    }
}
Output
sb = Welcome.com
lastIndexOf("com") = 8
lastIndexOf("abc") = -1
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/StringBuilderDemo_lastIndexOf_str_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StringBuilderDemo_lastIndexOf_str_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/c539eeaf4c6ff331d8e2aa2333826ea70c999093/BasicJava/StringBuilderDemo_lastIndexOf_str_App/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment