Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Whenever I process an input string with the Scanner and the string contains a space, only the first word appears. How can I adjust this so the entire phrase is entered into one string variable?

My code:

import java.util.Scanner;

public class HelloWorld {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        System.out.print("Enter your name: ");
        String name = scan.next();
        String namefinal = name.replace(' ', '_');
        System.out.println(namefinal);
    }   
}
share|improve this question

3 Answers

try scan.nextLine() instead of scan.next()

share|improve this answer
1  
+1 he has to use it twice : scan.nextLine();String name = scan.nextLine(); :) – Nandkumar Tekale Aug 15 '12 at 19:23

A Scanner breaks its input into tokens using a delimiter pattern, which by default matches whitespace

Source: Scanner Javadoc

share|improve this answer

If you really want to do it in one step, you'll have to either implement you own reader or use JOptionPane. Here is an example

public class HelloWorld {

public static void main(String[] args) {

    System.out.print("Enter your name: ");
    String name = JOptionPane.showInputDialog("Enter your name");
    System.out.println(name);

}

}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.