我是java新手,我一直在尝试解决一个问题,我觉得答案比我的代码更简单。问题是打印任意长度的用户输入名称的首字母以及完整的姓氏。但是这必须在没有任何String.split()或数组的情况下完成。我试图让用户一次输入一个单词的名字,但有没有可能的方法一次获得整个名称并按要求执行。 我的代码如下:
import java.io.*;
public class Initials {
public static void main(String[]args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the number of words your name contains");
int n=Integer.parseInt(br.readLine());
String str="";
for(int x=1;x<=n-1;x++){
System.out.println("Enter your name's word number:"+" "+x);
String s=br.readLine();
String st=s.toUpperCase();
char ch=st.charAt(0);
str=str+ch+".";
}
System.out.println("Enter your surname");
String sur=br.readLine();
str=str+" "+sur.toUpperCase();
System.out.println(str);
}
}
答案 0 :(得分:5)
使用正则表达式(即(?<=\w)\w+(?=\s)
):
String name = "John Paul Jones"; // read this from the user
System.out.println(name.replaceAll("(?<=\\w)\\w+(?=\\s)", "."));
J. P. Jones
没有split()
,没有数组:)
一点解释:我们基本上想要替换每个单词的所有字母,后面跟一个空格字符,除了第一个字母,后面加.
个字符。要匹配此类字词,我们使用(?<=\w)\w+(?=\s)
:
(?<=\w)
是一个积极的看法;它会检查匹配开头是否存在单词字符,但不会将其包含在匹配中。我们有这个组件,因为我们不想匹配每个名字的第一个字符,而是除了第一个字符之外的所有字符(除了姓氏,我们将很快处理)。\w+
匹配任何连续的单词字符串;我们使用它来匹配名称的其余部分。(?=\s)
是一个积极的向前看;它会检查我们的匹配后面跟一个空白字符,但不会在匹配中包含它。我们包含这个组件是因为我们不想替换姓氏上的任何内容,后者不应该跟空白字符,因此不应该与正则表达式匹配。答案 1 :(得分:0)
另一种方式---
import java.util.Scanner;
//a class that will print your output
class Initial {
public void Initials() {
Scanner sc = new Scanner(System.in);
System.out.print("Enter Full name:");
String name = sc.nextLine();
int l = name.length();
int pos = 0;
for (int i = l - 1; i >= 0; i--) {
char ch = name.charAt(i);
if (ch == ' ') {
pos = i; //getting the last space before Surname
break;
}
}
System.out.print("The initials are: ");
System.out.print(name.charAt(0) + ".");//prints first name initial
// with dot
for (int x = 1; x < pos; x++) //finds midname initial
{
char ch = name.charAt(x);
if (ch == ' ') {
System.out.print(name.charAt(x + 1) + ".");
}
}
for (int i = pos; i < l; i++) { //for printing Surname
System.out.print(name.charAt(i));
}
}
}
public class Str {
public static void main(String[] args) {
Initial i = new Initial();
i.Initials();
}
}
答案 2 :(得分:-1)
//此代码适用于任何编号。名称中的单词
class Surnam {
public static void main(String name) {
name = " " + name;
int l=name.length(), p=0, m=0, r=0;
char y;
String word=" ", words=" ";
for(int i = 0; i = 0; i--) {
y=name.charAt(i);
if(y==' ') {
r=name.lastIndexOf(y); //extracting the last space of the string
word=name.substring(i,l); //extracting the surname
words=name.replace(word," "); //removing the surname break;
}
}
for (int i = 0; i <= r - 1; i++) {
char x=words.charAt(i);
if (x == ' ') {
System.out.print(words.charAt(i + 1) + "."); //Printing all initials before the surname with a dot
}
}
for (int i = l - 1; i >= 0; i--) {
char x=name.charAt(i);
if(x==' ') {
m=i;
name=name.substring(m,l); //extracting the surname
name=name.trim(); //removing all the spaces before the surname
System.out.print(name);
break;
}
}
}
}