character at index of string java
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
character at index of string java
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
how to find the index of a letter in a string java
String myStr = "Hello planet earth, you are a great planet.";
System.out.println(myStr.indexOf("planet"));
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"));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us