Answers for "can we access the particular character of an string in 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

Code answers related to "can we access the particular character of an string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language