Answers for "how to get the char in specific place in the string java"

12

get certain character from string java

String words = "Hi There"; //creating a string var named 'words'
char index = words.charAt(0); /* setting a variable 'index' to letter
'0' of variable 'words'. In this case, index = 'H'.*/
System.out.println(index); //print var 'index' which will print "H"
Posted by: Guest on April-02-2020
0

find char in string java

String str = "testdemo";
      System.out.println("String: "+str);
      int index = str.indexOf( 'h' );
      System.out.printf("'h' is at index %dn", index);
Posted by: Guest on August-15-2021

Code answers related to "how to get the char in specific place in the string java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language