Answers for "how to take a certan place of a string"

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

certain position in string

String anotherPalindrome = "Niagara. O roar again!"; 
char aChar = anotherPalindrome.charAt(9);
Posted by: Guest on March-04-2020

Code answers related to "how to take a certan place of a string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language