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
string.indexof java
Method Signature:
public int indexOf(String str)
public int indexOf(String str, int fromIndex)
public int indexOf(char c)
public int indexOf(char c, int fromIndex)
Returns: Index of the first occurrence of the passed argument
-1 if it never occurs
Eg: String myStr = "Hello World!";
System.out.println(myStr.indexOf("o"));
Output: 4
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