Answers for "Print out the character in the 5th index of the String str"

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

Code answers related to "Print out the character in the 5th index of the String str"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language