你如何创建一个将从第 2 个字符删除到 space 的程序?

How do you create a program that will remove from the 2nd character to the space?

我正在尝试找到一种方法来创建一个程序,用户可以在其中输入他们的全名(名字和姓氏),并且可以将多个字符从第二个字符删除到另一个特定字符,即带有 StringBuilder 的 space .这意味着它将打印出第一个名字的首字母和整个姓氏。

示例:

输入: 巴拉克奥巴马

输出: 巴马

您可以使用两个 substring,这将创建两个中间 String 对象,或者您可以使用一个 StringBuilder 对象,如下所示:

String input = "Hello everyone, I'm Cho.";
String output = new StringBuilder(input).delete(5, 14).toString(); // "Hello, I'm Cho."

下面的代码将从第二个字符开始删除,直到检测到第一个 space。例如从 Dong ChoDCho

    Scanner scanner = new Scanner(System.in);
    String userName;

    System.out.println("Enter username"); 
    userName = scanner.nextLine();   
    
    int spaceIndex = userName.indexOf(" ")+1;
    String firstPartOfString = userName.substring(0, 1);
    String lastPartOfString = userName.substring(spaceIndex, userName.length());
    userName = firstPartOfString +lastPartOfString;
    
    System.out.println(userName);