Answers for "how to take individual characters from a string in java"

22

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

how to acces every char of a String in java

class Main
{
    // Iterate over the characters of a string
    public static void main(String[] args)
    {
        String s = "Techie Delight";
 
        // using simple for-loop
        for (int i = 0; i < s.length(); i++) {
            System.out.print(s.charAt(i));
        }
    }
}
Posted by: Guest on September-16-2021

Code answers related to "how to take individual characters from a string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language