Thursday, October 9, 2025
HomeLanguagesJavaScanner and nextChar() in Java

Scanner and nextChar() in Java

Scanner class in Java supports nextInt(), nextLong(), nextDouble() etc. But there is no nextChar() (See this for examples) To read a char, we use next().charAt(0). next() function returns the next token/word in the input as a string and charAt(0) function returns the first character in that string, the number 0 in the function in CharAt(NUMBER)  represents the index of the single word of the string taken input, and set that index character to the char variable.

Java




// Java program to read character using Scanner
// class
import java.util.Scanner;
 
public class ScannerDemo1 {
 
    public static void main(String [] args){
 
        Scanner sc = new Scanner(System.in);
        char c = sc.next().charAt(1);
                                // here this is the indexing of the element to take //
        System.out.println("c = "+c);
 
 
 
 
    }
     
}
   
   
  


Input :

ge

Output :

c = e

This article is contributed by Piyush Gupta and Soumen Pal. If you like Lazyroar and would like to contribute, you can also write an article and mail your article to review-team@geeksforgeeks.org. See your article appearing on the Lazyroar main page and help other Geeks. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above

Previous article
Next article
RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11876 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS