Get Certain Character From String Java

[Solved] Get Certain Character From String Java | Scala - Code Explorer | yomemimo.com
Question : get certain character from string java

Answered by : difficult-deer-yn98sjidtz03

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"

Source : | Last Update : Thu, 09 Apr 20

Answers related to get certain character from string java

Code Explorer Popular Question For Scala