How To Find The Index Of A Letter In A

[Solved] How To Find The Index Of A Letter In A | Scala - Code Explorer | yomemimo.com
Question : what method is use for getting the index position of a character of a string in java

Answered by : david-ogunsola

// 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"));

Source : | Last Update : Mon, 18 Oct 21

Answers related to how to find the index of a letter in a string java

Code Explorer Popular Question For Scala