Answers for "get value index in string java"

1

String indexOf(String str int fromIndex) method in java

import java.util.*;
public class StringIndexOfMethodExample
{
   public static void main(String[] args)
   {
      String strInput = new String("hello world core java");
      String strSub = new String("core");
      System.out.print("Index found: " );
      System.out.println(strInput.indexOf(strSub, 3));
   }
}
Posted by: Guest on October-26-2020
0

what method is use for getting the index position of a character of a string in java

// If you want to get the index position of a character in a String, use this method:
.charAt( /*Args int*/ )
// Here's a practial example:
String str = "Grepper";
char ch = str.charAt(0);

// If you want to get the index position of a word/char in a string(a Phrase/Sentence), you could use this method:
.indexOf( /*Args Str*/ )
// Here's a practial example:
String myStr = "This is just an example Sentence";
System.out.println(myStr.indexOf("example"));
Posted by: Guest on October-11-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language